body {
    margin: 0;
    font-family: "Figtree", sans-serif !important;
    background: linear-gradient(160deg, #0197a3, #00c3b2);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; /* for small screens */
}
body{
    overflow-y:hidden;
}
/* Wrapper */
.login-wrapper {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Header text */
.login-header {
    margin-bottom: 20px;
    color: #fff;
}

.login-logo {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 18px;
    font-weight: 400;
}

/* Main box */
.login-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}
form label {
    float: left;
    margin-bottom: 6px;
    font-size: 14px;
    color: #414141;
    font-weight: 500;
}
/* Inputs */
.form-control {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Flex row for remember + forgot */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px;
    font-size: 14px;
    color: #555;
    flex-wrap: wrap; /* responsive */
    gap: 5px;
}

    .form-options a {
        color: #00c3bb;
        text-decoration: none;
        font-weight: 600;
    }

        .form-options a:hover {
            text-decoration: underline;
        }
.form-control,
.btn-primary,
.btn-social,
select.form-control {
    width: 100%;
    box-sizing: border-box; /* border & padding ko width me include karega */
    display: block;
}
/* Sign in button */
.btn-primary {
    background: linear-gradient(160deg, #01839d, #00c3bb);
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #008f71;
    }

/* Divider */
.divider {
    margin: 20px 0;
    font-size: 14px;
    color: #777;
    position: relative;
}

    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #ddd;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

/* Social login */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    font-weight: 500;
}

    .btn-social img {
        height: 18px;
        margin-right: 8px;
    }

/* Footer inside box */
.footer-text {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

    .footer-text a {
        color: #00a6a8;
        text-decoration: none;
    }

        .footer-text a:hover {
            text-decoration: underline;
        }

.btn-primary:disabled {
    background-color: #a1a1a1 !important; /* Grey */
    cursor: not-allowed !important;
    opacity: 0.7;
}


/* Bottom continue link */
.bottom-link {
    margin-top: 20px;
    font-size: 13px;
    color: white;
    text-align: center;
    width: 100%;
}

    .bottom-link a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }

        .bottom-link a:hover {
            text-decoration: underline;
        }

/* Responsive Media Queries */
@media (max-width: 480px) {
    .login-logo {
        font-size: 28px;
    }

    .login-subtitle {
        font-size: 16px;
    }

    .login-box {
        padding: 20px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}
