﻿.login-page {
    background: transparent !important;
}

/* HEADER */
.login-hero {
    background: linear-gradient(135deg, rgba(12, 75, 49, .92), rgba(38, 142, 91, .72));
    background-size: cover;
    background-position: center;
    padding: 150px 0 70px;
    color: #fff;
}

    .login-hero h1 {
        color: #fff;
        font-weight: 800;
        font-style: italic;
        text-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    }

    .login-hero p {
        color: rgba(255,255,255,.92);
        max-width: 720px;
    }

/* FORM AREA */
.login-content {
    background: transparent !important;
    padding: 80px 0;
}

.login-wrapper {
    max-width: 1000px;
    margin: -80px auto 0;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(24, 128, 82, .14);
    box-shadow: 0 25px 60px rgba(12, 75, 49, .18);
}

.login-info {
    display: flex;
    align-items: center;
    padding: 50px;
    color: #fff;
    background: url('/img/banner1.png');
    background-size: cover;
}

.login-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    font-weight: 700;
    margin-bottom: 18px;
}

.login-info h1 {
    font-size: 40px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
}

.login-info p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
}

.login-card {
    padding: 45px 40px;
    background: #fff;
}

.login-card-header {
    margin-bottom: 25px;
}

    .login-card-header h3 {
        color: #145c3c;
        font-weight: 800;
        font-style: italic;
        margin-bottom: 6px;
    }

    .login-card-header p {
        color: #52635a;
        margin-bottom: 0;
    }

.login-card .form-label {
    color: #33423a;
    font-weight: 600;
}

.login-input .input-group-text {
    background: #eaf7ef;
    color: #145c3c;
    border: 1px solid rgba(24, 128, 82, .16);
    border-right: 0;
    border-radius: 12px 0 0 12px;
    width: 46px;
    justify-content: center;
}

.login-input .form-control {
    border: 1px solid rgba(24, 128, 82, .16);
    border-left: 0;
    border-radius: 0 12px 12px 0;
    padding: 12px 14px;
    box-shadow: none;
}

    .login-input .form-control:focus {
        border-color: rgba(35, 138, 88, .45);
        box-shadow: 0 0 0 .2rem rgba(35, 138, 88, .10);
    }

.login-btn {
    background: linear-gradient(135deg, #0f4f34, #238a58);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px;
    font-weight: 700;
    transition: .25s;
}

    .login-btn:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.login-bottom-text {
    text-align: center;
    margin-top: 18px;
    color: #52635a;
    font-size: 14px;
}

    .login-bottom-text a {
        color: #d9a441;
        font-weight: 800;
        text-decoration: none;
    }

        .login-bottom-text a:hover {
            color: #145c3c;
        }

@media (max-width: 991px) {
    .login-hero {
        padding: 70px 0 45px;
    }

    .login-wrapper {
        grid-template-columns: 1fr;
        margin-top: -40px;
        max-width: 560px;
    }

    .login-info {
        display: none !important;
    }

    .login-card {
        padding: 35px 24px;
    }
}
/* LOGIN ANIMATIONS */
.login-anim {
    opacity: 0;
    transform: translateY(22px);
    animation: loginFadeUp .75s ease forwards;
}

.login-delay-1 {
    animation-delay: .10s;
}

.login-delay-2 {
    animation-delay: .25s;
}

.login-delay-3 {
    animation-delay: .40s;
}

.login-wrapper {
    animation: loginCardUp .85s ease forwards;
}

.login-btn i {
    transition: .25s ease;
}

.login-btn:hover i {
    transform: translateX(5px);
}

.login-input {
    transition: .25s ease;
}

    .login-input:focus-within {
        transform: translateY(-2px);
    }

.login-badge {
    animation-name: loginFadeUp, loginSoftPulse;
    animation-duration: .75s, 2.6s;
    animation-delay: .10s, 1s;
    animation-fill-mode: forwards, infinite;
    animation-timing-function: ease, ease-in-out;
}

@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loginCardUp {
    from {
        opacity: 0;
        transform: translateY(35px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loginSoftPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,.18);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255,255,255,0);
    }
}
