/* Custom styling for authentication pages */

/* Animations for flash messages */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-right {
    animation: fadeInRight 0.5s ease-out forwards;
}

.opacity-0 {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.auth-notification {
    background: rgba(32, 78, 104, 0.5) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 0.5rem;
}

.register-button {
    background: linear-gradient(135deg, #0088cc 0%, #34d399 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.4);
}

/* Styling for form inputs to match the glass theme */
.form-input {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(75, 85, 99, 0.4);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: rgba(52, 211, 153, 0.6);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}

/* Adjust text colors for better visibility */
.auth-text {
    color: rgba(255, 255, 255, 0.9);
}

.auth-text-muted {
    color: rgba(255, 255, 255, 0.7);
}
