/* Auth pages - hide header and footer */
.auth-page body .header,
.auth-page body .footer {
    display: none !important;
}

.auth-page body #app {
    min-height: 100vh;
}

/* Login page specific styles */
.auth-page-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Common auth page styles */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar-lg {
    width: 80px;
    height: 80px;
}

.avatar-lg .avatar-title {
    width: 80px;
    height: 80px;
}

.avatar-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-circle {
    border-radius: 50% !important;
    aspect-ratio: 1;
}

.form-control:focus {
    border-color: #1e3c72;
    box-shadow: 0 0 0 0.2rem rgba(30, 60, 114, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Register page specific styles */
.captcha-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.captcha-image:hover {
    transform: scale(1.02);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

/* Password reset pages specific styles */
.icon-container {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.alert {
    border: none;
    border-radius: 12px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-text {
    height: calc(2.5em + 1.5rem + 2px);
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Specific styles for password reset/email pages */
.icon-container-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.form-control:focus.email-page {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}