/**
 * auth-notifications.css - Styles for Login/Register page notifications
 */

.auth-notification-item {
    position: relative;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth-notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.notification-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Google Sans', sans-serif;
}

.notification-message {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Types */
.notification-info { border-left: 4px solid #0d6efd; }
.notification-success { border-left: 4px solid #198754; }
.notification-warning { border-left: 4px solid var(--accent-color); }
.notification-danger { border-left: 4px solid #dc3545; }
.notification-primary { border-left: 4px solid var(--accent-color); }

.notification-classic {
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), rgba(0,0,0,0.4));
}

.notification-classic .notification-title {
    color: var(--accent-color);
}

/* Timer */
.notification-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.timer-label {
    color: rgba(255, 255, 255, 0.5);
}

.timer-value {
    color: #fff;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Buttons */
.auth-notification-item .btn {
    border-radius: 12px;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.auth-notification-item .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Close Button */
.btn-close-notification {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close-notification:hover {
    color: #fff;
}

/* Animations */
.animate-fade-in {
    animation: authNotifyFadeIn 0.5s ease backwards;
}

@keyframes authNotifyFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
