/* auth.css */
.auth-wrapper {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.login-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    background: #fff;
    max-width: 1000px;
    width: 100%;
}

.auth-form-section {
    padding: 3.5rem;
}

.auth-info-section {
    background: var(--enreach-dark);
    background: linear-gradient(135deg, #003057 0%, #0077b6 100%);
    padding: 3.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-feature-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--enreach-blue);
    opacity: 0.8;
}

.btn-login {
    background: var(--enreach-blue);
    border: none;
    padding: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #0091c2;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 169, 224, 0.4);
}