
.login-page {
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
            circle at 10% 20%,
            rgba(34, 197, 94, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(16, 185, 129, 0.08),
            transparent 30%
        ),
        #f5f8f7;
}

.login-wrapper {
    width: 100%;
    max-width: 1100px;
    min-height: 570px;
    display: grid;
    grid-template-columns: 44% 56%;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.10);
}

.login-info {
    position: relative;
    min-height: 570px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .12), transparent 25%),
            radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .08), transparent 30%),
            linear-gradient(145deg, #006b2d, #008f35 55%, #005823);
    /*background: linear-gradient( 145deg, #034830, #08774f );*/
    overflow: hidden;
}

.login-info::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -150px;
    top: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.login-info::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -140px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.login-brand {
    position: relative;
    z-index: 2;
}

.login-brand img {
    max-width: 180px;
    max-height: 70px;
   background: #fff;
  padding: 9px 14px;
  border-radius: 12px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.login-welcome {
    position: relative;
    z-index: 2;
    max-width: 390px;
}


.login-welcome .welcome-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top:3px;
}


.login-welcome h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}


.login-welcome h1 span {
    display: block;
    color: #72e6ad;
}


.login-welcome > p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.7;
}

.login-points {
    display: flex;
    flex-direction: column;

    gap: 17px;
}


.login-points > div {
    display: flex;

    align-items: center;

    gap: 13px;
}


.login-points > div > span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,0.10);

    color: #72e6ad;

    font-size: 15px;
}


.login-points p {
    margin: 0;

    color: rgba(255,255,255,0.90);

    font-size: 13px;
}

.login-info-footer {
    position: relative;

    z-index: 2;

    color: rgba(255,255,255,0.55);

    font-size: 11px;
}


.login-form-area {
    padding: 55px 65px;

    background: #ffffff;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.login-heading {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 35px;
}


.login-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #e9f8f0;

    color: #08774f;

    font-size: 21px;
}


.login-heading h2 {
    margin: 0 0 4px;

    color: #17372c;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 750;
}


.login-heading p {
    margin: 0;

    color: #8a9691;

    font-size: 13px;
}


.login-field {
    margin-bottom: 21px;
}


.login-field label {
    display: block;

    margin: 0 0 8px 3px;

    color: #34443e;

    font-size: 12px;

    font-weight: 650;
}


.login-input {
    position: relative;

    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;
}


.login-input > i {
    position: absolute;

    left: 17px;

    top: 50%;

    transform: translateY(-50%);

    color: #8b9993;

    font-size: 14px;

    pointer-events: none;

    z-index: 2;
}


.login-input input {
    width: 100%;

    height: 52px;

    padding: 0 48px;

    border: 1px solid #e2e9e5;

    border-radius: 12px;

    outline: none;

    background: #f9fbfa;

    color: #263b33;

    font-size: 13px;

    transition: all 0.25s ease;
}


.login-input input::placeholder {
    color: #a5afab;
}


.login-input input:focus {
    border-color: #119866;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(17, 152, 102, 0.08);
}


.login-eye {
    position: absolute;

    right: 8px;

    top: 50%;

    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 8px;

    background: transparent;

    color: #8b9993;

    cursor: pointer;

    transition: all 0.2s ease;
}


.login-eye:hover {
    background: #e9f8f0;

    color: #08774f;
}


.login-options {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 0 0 23px;
}


.remember-me {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #75817c;

    font-size: 12px;

    cursor: pointer;
}


.remember-me input {
    width: 16px;
    height: 16px;

    margin: 0;

    accent-color: #08774f;

    cursor: pointer;
}


.login-options > a {
    color: #08774f;

    font-size: 12px;

    font-weight: 650;

    text-decoration: none;
}


.login-options > a:hover {
    text-decoration: underline;
}


.login-submit {
    width: 100%;

    height: 52px;

    padding: 0 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #08774f,
            #119866
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(8,119,79,0.20);

    transition: all 0.25s ease;
}


.login-submit i {
    font-size: 13px;

    transition: transform 0.25s ease;
}


.login-submit:hover {
    background:
        linear-gradient(
            135deg,
            #066340,
            #08774f
        );

    transform: translateY(-1px);

    box-shadow:
        0 12px 25px rgba(8,119,79,0.25);
}


.login-submit:hover i {
    transform: translateX(4px);
}


.login-submit:active {
    transform: translateY(0);
}


.register-box {
    margin-top: 21px;

    padding-top: 20px;

    border-top: 1px solid #edf1ef;

    text-align: center;

    color: #8a9691;

    font-size: 12px;
}


.register-box a {
    margin-left: 4px;

    color: #08774f;

    font-weight: 700;

    text-decoration: none;
}


.register-box a:hover {
    text-decoration: underline;
}


.login-form-area .alert {
    position: relative;

    margin-bottom: 18px;

    padding: 11px 38px 11px 13px;

    border-radius: 10px;

    font-size: 12px;
}


.login-form-area .alert-danger {
    border: 1px solid #f3c5c5;

    background: #fff3f3;

    color: #c0392b;
}


.login-form-area .alert-success {
    border: 1px solid #bce5cf;

    background: #effbf4;

    color: #08774f;
}


.login-form-area .alert .close {
    position: absolute;

    right: 10px;
    top: 8px;

    color: inherit;

    opacity: 0.7;

    border: 0;

    background: transparent;

    font-size: 18px;

    cursor: pointer;
}

@media (max-width: 991px) {

    .login-page {
        padding: 25px 15px;
    }

    .login-wrapper {
        max-width: 760px;

        grid-template-columns: 1fr;
    }

    .login-info {
        min-height: auto;

        padding: 35px;
    }

    .login-welcome {
        margin: 45px 0 35px;

        max-width: 600px;
    }

    .login-form-area {
        padding: 45px 40px;
    }

}

@media (max-width: 767px) {

    .login-page {
        padding: 15px 10px;

        align-items: flex-start;
    }

    .login-wrapper {
        border-radius: 20px;
    }

    .login-info {
        padding: 28px 24px;
    }

    .login-brand img {
        max-width: 145px;
    }

    .login-welcome {
        margin: 35px 0 25px;
    }

    .login-welcome h1 {
        font-size: 35px;
    }

    .login-welcome > p {
        font-size: 14px;
    }

    .login-points {
        gap: 13px;
    }

    .login-points p {
        font-size: 12px;
    }

    .login-form-area {
        padding: 32px 20px;
    }

    .login-heading {
        margin-bottom: 27px;
    }

    .login-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 18px;
    }

    .login-heading h2 {
        font-size: 23px;
    }

    .login-heading p {
        font-size: 11px;
    }

    .login-input,
    .login-input input {
        height: 48px;
    }

}

@media (max-width: 420px) {

    .login-page {
        padding: 0;
    }

    .login-wrapper {
        min-height: 100vh;

        border-radius: 0;
    }

    .login-info {
        padding: 25px 20px;
    }

    .login-welcome h1 {
        font-size: 32px;
    }

    .login-form-area {
        padding: 28px 17px;
    }

}
