.login-page-wrapper {
    --primary-color: #6a5af9;
    --secondary-color: #d15ab2;
    --text-color: #007470;
    --input-bg: rgba(255, 255, 255, 0.15);
    --input-border: rgba(255, 255, 255, 0.3);

    font-family: 'Montserrat', sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center;
}

.login-form-container {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: rgba(4, 167, 161, 0.26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
    color: var(--text-color);
}

.login-form-container{
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
    padding: 15px;
    font-size: 14px;
}
.login-form-container .alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #f8d7da;
}
.login-form-container .alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #d4edda;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.8;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
    text-align: left;
}

.form-group .form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.6;
}

.form-input {
    width: 100%;
    height: 50px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    padding: 0 20px 0 50px;
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #007470;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 90, 249, 0.5);
    border-color: var(--primary-color);
}

.btn-login {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-image: linear-gradient(45deg, #002D48, #006FAF);
    background-size: 200% auto;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.btn-login:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.forgot-password-btn {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.forgot-password-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.8);
}
.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--input-border);
}
.social-divider:not(:empty)::before {
    margin-right: .5em;
}
.social-divider:not(:empty)::after {
    margin-left: .5em;
}