﻿/* =========================
   LOGIN PAGE
========================= */
.loginbg {
    min-height: 100vh;
    background: #f6f8f7;
}

/* =========================
   LEFT SIDE
========================= */

.login-left-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.login-form-box {
    width: 100%;
    max-width: 430px;
}

/* LOGO */

.login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
}

.login-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--home-deep), var(--home-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-lime);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(15, 90, 79, 0.18);
}

.login-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--home-deep);
    letter-spacing: -0.03em;
}

    .login-logo-text span {
        color: var(--home-teal);
    }

/* TEXT */

.login-heading {
    font-size: clamp(30px, 4vw, 38px);
    font-weight: 800;
    color: var(--home-deep);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.login-sub {
    font-size: 15px;
    color: #6d7d79;
    line-height: 1.8;
    margin-bottom: 34px;
}

/* =========================
   INPUTS
========================= */

.input-group-custom {
    margin-bottom: 22px;
}

    .input-group-custom label {
        display: block;
        margin-bottom: 8px;
        font-size: 11px;
        font-weight: 700;
        color: var(--home-deep);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .input-group-custom .form-control {
        width: 100%;
        height: 56px;
        border-radius: 16px;
        border: 1.5px solid #dce5e1;
        background: #f9fbfa;
        padding: 0 18px;
        font-size: 14px;
        color: #18342f;
        transition: all 0.22s ease;
        box-shadow: none !important;
    }

        .input-group-custom .form-control::placeholder {
            color: #a8b5b1;
        }

        .input-group-custom .form-control:hover {
            border-color: rgba(15, 90, 79, 0.45);
            background: #fff;
        }

        .input-group-custom .form-control:focus {
            border-color: var(--home-teal);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(15, 90, 79, 0.08) !important;
        }

/* =========================
   CHECKBOX + LINK
========================= */

.custom-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .custom-check input {
        accent-color: var(--home-teal);
        width: 15px;
        height: 15px;
    }

    .custom-check label {
        font-size: 13px;
        color: #6d7d79;
    }

.forgot-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--home-teal);
    text-decoration: none;
    transition: 0.2s ease;
}

    .forgot-link:hover {
        color: var(--home-deep);
    }

/* =========================
   BUTTON
========================= */

.cta-btn {
    border: 1px solid #0f5a4f ;
    width: 100%;
    height: 56px;
/*    border: none;*/
    border-radius: 16px;
    background: linear-gradient(135deg, var(--home-deep), var(--home-teal));
    color: #0f5a4f;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    box-shadow: 0 14px 30px rgba(15, 90, 79, 0.18);
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(15, 90, 79, 0.24);
    }

/* SIGNUP */

.signup-text {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: #70817c;
}

    .signup-text a {
        color: var(--home-teal);
        text-decoration: none;
        font-weight: 700;
    }

/* =========================
   RIGHT SIDE
========================= */

.right-col {
    z-index:1;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: radial-gradient(circle at top right, rgba(185,239,84,0.08), transparent 30%), radial-gradient(circle at bottom left, rgba(15,90,79,0.30), transparent 35%), linear-gradient(145deg, #082d28 0%, #0b3f38 45%, #0f5a4f 100%);
}

    /* GLOW EFFECT */

    .right-col::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(185, 239, 84, 0.06);
        top: -120px;
        right: -100px;
        filter: blur(10px);
    }

    .right-col::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(185,239,84,0.05);
        bottom: -120px;
        left: -100px;
        filter: blur(10px);
    }

/* CONTENT */

.hero-login-content {
    position: relative;
    z-index: 3;
    max-width: 470px;
}

/* SMALL BADGE */

.small-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #b9ef54;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 26px;
}

/* HEADING */

.main-heading {
    font-size: clamp(46px, 5vw, 66px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #ffffff;
    margin-bottom: 22px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.20);
}

    .main-heading span {
        color: var(--home-lime);
    }

/* SUBTEXT */

.sub-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    margin-bottom: 42px;
    max-width: 420px;
}

/* =========================
   FEATURES
========================= */

.features {
    display: flex;
    gap: 14px;
}

.feature-item {
    flex: 1;
    padding: 20px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.25s ease;
}

    .feature-item:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,0.08);
    }

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(185,239,84,0.10);
    color: var(--home-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 18px;
}

.feature-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.58);
}

/* =========================
   MODAL
========================= */

.modal-content {
    z-index:999;
    border-radius: 24px !important;
    overflow: hidden;
    border: none !important;
}

.modal-header {
    background: linear-gradient(135deg, var(--home-deep), var(--home-teal));
    border: none;
    padding: 22px 26px;
}

.modal-title {
    color: var(--home-lime);
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 28px;
}

.modal-footer {
    border-top: 1px solid #eef2f1;
    padding: 18px 28px;
}

.cls-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid #dfe7e4;
    background: #f7f9f8;
    color: #5f706c;
    font-weight: 600;
    transition: 0.2s ease;
}

.cls-btn:hover {
   background: #edf2f0;
}
/* =========================
   BOOTSTRAP FIX
========================= */

.form-control:focus,
.btn:focus,
.form-check-input:focus {
    box-shadow: none !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .right-col {
        display: none !important;
    }

    .login-left-col {
        padding: 50px 24px;
    }

    .login-form-box {
        max-width: 100%;
    }

    .login-heading {
        font-size: 34px;
    }
}