/**
 * Login-specific styles for Zetpy Call Center
 */
.login-page {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-login-wrapper {
    max-width: 100%;
}

.input-group-text i {
    font-size: 1.1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.02);
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
    .login-page {
        height: auto;
        min-height: 100vh;
    }

    .card-body {
        padding: 2rem !important;
    }

    .login-logo {
        max-height: 60px !important;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1.5rem !important;
    }

    .h3 {
        font-size: 1.5rem;
    }
}