.auth-image img {
    transition: transform 0.6s ease;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.auth-image img:hover {
    transform: scale(1.08);
}

.login-greeting h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}
.login-greeting p {
    color: #666;
    font-size: 0.95rem;
}

.auth-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.auth-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.brand-logo {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .brand-logo {
        max-height: 30px;
    }
}