/* ================= LOGIN PAGE FINAL CLEAN ================= */

body,
html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    /* NO SCROLL */
    font-family: 'Poppins', sans-serif;
}

/* Section full height */
.login-section {
    height: calc(100vh - 140px);
    /* header height adjust */
    background: #fffdf7;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Box */
.login-center-box {
    width: 100%;
    max-width: 420px;
    text-align: center;
    margin: auto;
}

/* Heading */
.login-center-box h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b8f3c;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Inputs */
.login-center-box .form-control {
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    box-shadow: none;
}

.login-center-box .form-control:focus {
    border-color: #0b8f3c;
    box-shadow: none;
}

/* Forgot */
.forgot-link {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    display: block;
    text-align: left;
    margin-top: 5px;
}

.forgot-link:hover {
    color: #0b8f3c;
}

/* ================= BUTTONS ================= */

/* Sign In Button */
/* .btn-login {
    background: #0b8f3c !important;
    color: #ffffff !important;
    padding: 10px 45px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    margin-top: 20px;
    transition: 0.3s;
    width: 100%;
}

.btn-login:hover {
    background: #086c2e;
} *//* Sign In Button */
.btn-login {
    background: #0b8f3c !important;
    color: #ffffff !important;
    padding: 10px 45px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-login:hover {
    background: #086c2e !important;
    /* darker green */
    transform: translateY(-2px);
    /* little lift */
}

/* OR Divider */
.or-divider {
    margin: 15px 0;
    font-size: 13px;
    color: #777;
    position: relative;
    text-align: center;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

/* Create Account Button */
/* .btn-create {
    display: inline-block;
    background: #0b8f3c !important;
    color: #ffffff !important;
    padding: 10px 45px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 5px;
    width: 100%;
}

.btn-create:hover {
    background: #072c15;
    color: #ffffff;
} */
/* Create Account Button */
.btn-create {
    display: inline-block;
    background: #0b8f3c !important;
    color: #ffffff !important;
    padding: 10px 45px;
    border-radius: 4px;
    font-size: 16px;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 5px;
    width: 100%;
}

.btn-create:hover {
    background: #065a25 !important;
    /* darker green */
    transform: translateY(-2px);
    /* little lift */
}

/* ================= FOOTER LINES ================= */

.footer-red-line {
    height: 10px;
    background: #d71920;
}

.footer-green-line {
    height: 10px;
    background: #2f8f46;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
    .login-center-box h2 {
        font-size: 26px;
    }
}


@media (max-width: 768px) {

    body,
    html {
        overflow: auto;
        height: auto;
    }
}




@media (max-width: 768px) {

    .login-section {
        height: auto;
        min-height: calc(100vh - 120px);
        padding: 30px 15px;
        align-items: flex-start;
    }

    .login-center-box {
        margin-top: 40px;
        max-width: 100%;
    }
}


@media (max-width: 576px) {

    .login-center-box h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .login-center-box .form-control {
        font-size: 15px;
        padding: 10px 12px;
    }

    .forgot-link {
        font-size: 13px;
    }

    .btn-login,
    .btn-create {
        font-size: 15px;
        padding: 10px 0;
    }
}

@media (max-width: 360px) {

    .login-center-box h2 {
        font-size: 22px;
    }

    .or-divider {
        font-size: 12px;
    }

    .or-divider::before,
    .or-divider::after {
        width: 35%;
    }

    .btn-login,
    .btn-create {
        font-size: 14px;
    }
}