/* Desktop and Larger Screens */

/* Container */
#auth .container {
    box-shadow: 11px 12px 0px 2px rgba(0, 0, 0, 0.1);
}

/* Card */
.d-flex .mx-auto .card {
    top: 80px;
    left: 330px;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 1200px;
    height: 990px;
    background-color: rgb(255, 255, 255);
    background-image: url('https://whatzbot.com/wp-content/uploads/2025/01/WBLogin.webp');
    background-position: 20px 20px; /* Adjust the background image position */
    box-shadow: 0 14px 10px rgba(0, 0, 0, 0.1);
    border-radius: 55px;
    overflow: hidden;
    padding-top: 20px; /* Add padding at the top */
    padding-left: 5px; /* Add padding on the left */
}

/* Auth */
#auth {
    #background-image: url('');
  background-image: url('https://whatzbot.com/wp-content/uploads/2025/01/Login-Backgroun.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Inputs */
.textbox input {
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
    border: none;
    outline: none;
    color: #0d0382;
    font-size: 18px;
    border-radius: 5px;
}
/* --------------------------------------------------------------------- */
#form-submit-button{
 background-image:linear-gradient(to right, #08114a 0%, #964e87 100%);
 font-weight:600;
}
#form-submit-button{
 border-bottom-left-radius:50px;
 border-top-left-radius:50px;
 border-bottom-right-radius:50px;
 border-top-right-radius:50px;
}
/* --------------------------------------------------------------------- */

/* Buttons */
.btn {
    width: 100%;
    background: #0d0382;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    border-radius: 40px;
    transition: background 0.3s ease;
}

.btn.btn-primary.float-end {
    width: 341px;
    margin: 10px 0 0;
}

.btn.btn-outline-dark.btn-lg.float-end {
    margin: 0 0 5px 0;
}

/* Card Customization */
div .card.pt-4 {
    border-radius: 50px;
    background-color: #ffff;
    margin: 0 20px 35.2px 0;
    padding: 24px 20px 24px 24px;
}

div .card.pt-4 input {
    outline: 1px solid #000;
    padding: 8px;
    border-radius: 10px;
}

div .card.pt-4 h3 {
    font-weight: bold;
}

/* OTP Verify */
.signup_form {
    background-color: #ffd537;
    border-radius: 100px;
    padding: 24px;
}

.full_bg {
    background-color: #0d0382;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Reset container to default */
    #auth .container {
        box-shadow: none;
        background: none; /* Remove custom background */
    }

    /* Reset card */
    .d-flex .mx-auto .card {
        top: 0;
        left: 0;
        margin: 10px;
    }

    /* Default styling for the main container */
    .container {
        height: auto;
        max-width: 100%;
        margin: 10px auto;
        box-shadow: none;
        border-radius: 0; /* Flat edges for default look */
        background-color: transparent; /* Remove custom background */
    }

    /* Buttons full width */
    .btn.btn-primary.float-end,
    .btn.btn-outline-dark.btn-lg.float-end {
        width: 100%;
        margin: 10px 0;
    }

    /* Adjust card for mobile */
    div .card.pt-4 {
        margin: 0;
        padding: 10px;
        border-radius: 10px;
        box-shadow: none;
    }
}