@import url('https://fonts.googleapis.com');

* {
    font-family: 'Poppins', Sans-serif;
}
html, body {
    height: 100vh;
    margin: 0;
}

/* Flex layout to push footer to bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content grows, pushing footer down */
.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* ===== Signup Form Wrapper ===== */
.signup-form {
   width: 100%;
   max-width: 460px;
   margin: 60px auto;
   padding: 40px 30px;
   border: 0px #000 solid;
   border-radius: 10px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Headings ===== */
.signup-form h3 {
    font-weight: 500;
    color: #000;
}

/* ===== Input Groups ===== */
.input-groups {
    margin-bottom: 22px;
    width:100%
}

.input-group label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: #444;
}

.error-msg {
    color: red;
    font-size: 12px;
    margin-top: 3px;
    display: block;
}

/* ===== Icon Input Wrapper ===== */
.icon-input {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-input input {
    width: 100%;
    padding: 10px 45px 10px 45px;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}


.icon-input input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

/* ===== Icons inside fields ===== */
.field-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    opacity: 1;
}

/* ===== Password Eye Icon ===== */
.toggle-eye {
    position: absolute;
    right: 12px;
    width: 20px;
    cursor: pointer;
    opacity: 1;
}

/* ===== Buttons ===== */
.signup, .google-signup {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.2s ease;
}

.signup:hover, .google-signup:hover {
    background: #333333;
}
.google-signup a{
    text-decoration:none;
    color: #fff;
}
.google-icon {
    width: 20px;
    height: 20px;
}

/* ===== Login Link ===== */
.login-link {
    margin-top: 18px;
    font-size: 14px;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
/* Add to signup.css */
#otpModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#otpModal h4 {
    font-weight: 600;
    margin-top: 10px;
}

#otpModal .spinner-border {
    color: #000 !important;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .signup-form {
        padding: 25px 20px;
        margin: 20px auto;
    }

    .signup-form h3 {
        font-size: 1.5rem;
        margin-bottom: 30px !important;
    }
}
