/* AI-Header: Authentication-specific component styles */
/* Date: 2025-08-08 */

/* ===========================================
   AUTHENTICATION FORM COMPONENTS
   =========================================== */

/* Storage notice within loading status */
.storage-notice {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.storage-notice small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: rgba(102, 126, 234, 0.7);
}

/* ===========================================
   AUTHENTICATION CHECKBOX ENHANCEMENTS
   =========================================== */

/* Checkbox help text for login options */
.checkbox-help {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    font-style: italic;
    transition: color 0.2s ease;
}

/* Checkbox status when checked */
.checkbox-status {
    color: #10b981;
    font-weight: 500;
    font-style: normal;
}

/* Enhanced checkbox container for authentication forms */
.checkbox-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-container:hover .checkbox-help {
    color: #b3c0cc;
}

.checkbox-container:hover {
    transform: translateY(-1px);
}

/* Accessible tooltip styling for authentication checkboxes */
.checkbox-container[title]:hover::after {
    content: attr(title);
    position: absolute;
    background: #1f2937;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    z-index: 1000;
    max-width: 200px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===========================================
   AUTHENTICATION LOADING STATES
   =========================================== */

/* Enhanced loading status for authentication pages */
.auth-loading-status {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    color: rgba(102, 126, 234, 0.9);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
}

/* Authentication-specific success states */
.auth-success-message {
    color: #10b981;
    font-weight: 500;
}

.auth-error-message {
    color: #ef4444;
    font-weight: 500;
}
