.login-wrapper {
    min-height: 100vh;
    display: flex;
}

.login-left {
    width: 50%;
    /* background:  #16b4ae ; */
    background: linear-gradient(135deg, var(--divine-green), var(--divine-blue));
    /* background: linear-gradient(135deg, var(--divine-teal), var(--divine-blue)); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.left-content {
    text-align: center;
    max-width: 420px;
}

.left-logo {
    max-width: 300px;
    margin-bottom: 35px;
}

.left-content h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 18px;
    opacity: 0.9;
}

.login-right {
    width: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 480px;
}

.login-logo {
    max-width: 280px;
    margin-bottom: 35px;
}

.login-card h3 {
    color: var(--divine-blue);
    font-weight: 700;
    margin-bottom: 8px;
}


.btn-login {
    height: 48px;
    background-color: #16b4ae !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    opacity: 1 !important;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #243a8f !important;
    color: #ffffff !important;
}


@media (max-width: 900px) {
    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }
}