/* Auth UI Redesign Styles */

/* --- Container for the row of social buttons --- */
.social-buttons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

/* --- Circular Social Button --- */
.social-button-circle {
    width: 3.5rem; /* ~56px */
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb; /* gray-200 */
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none; /* Remove underline from anchors */
}

.dark .social-button-circle {
    background-color: #1f2937; /* gray-800 */
    border-color: #374151; /* gray-700 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.18);
}

/* Hover Effect: Lift and Shadow */
.social-button-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark .social-button-circle:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    border-color: #4b5563; /* gray-600 */
}

/* Icons within the circle */
.social-button-circle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Provider specific hover colors (optional, but nice) */
.social-button-circle.google:hover { border-color: #4285F4; }
.social-button-circle.github:hover { border-color: #24292F; }
.dark .social-button-circle.github:hover { border-color: #ffffff; }
.social-button-circle.facebook:hover { border-color: #1877F2; }
.social-button-circle.microsoft:hover { border-color: #f35325; }


/* --- "Easy Entry" Label --- */
.easy-entry-label {
    text-align: center;
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark .easy-entry-label {
    color: #9ca3af; /* text-gray-400 */
}


/* --- The "--- or ---" Divider --- */
.auth-divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e7eb; /* gray-200 */
    z-index: 1;
}

.dark .auth-divider::before {
    background-color: #374151; /* gray-700 */
}

.auth-divider span {
    position: relative;
    z-index: 2;
    background-color: white; /* Matches modal bg */
    padding: 0 0.75rem;
    color: #9ca3af; /* text-gray-400 */
    font-size: 0.875rem; /* text-sm */
}

.dark .auth-divider span {
    background-color: #1f2937; /* gray-800 - match your modal bg! */
    color: #6b7280; /* text-gray-500 */
}


/* --- Auth Tab Redesign --- */
.auth-tabs-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0;
}

.dark .auth-tabs-container {
    border-bottom-color: #374151;
}

.auth-tab-btn {
    padding-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.dark .auth-tab-btn {
    color: #9ca3af;
}

.auth-tab-btn:hover {
    color: #374151;
}
.dark .auth-tab-btn:hover {
    color: #e5e7eb;
}

.auth-tab-btn.active {
    color: #2563eb; /* blue-600 */
    border-bottom-color: #2563eb;
}
.dark .auth-tab-btn.active {
    color: #60a5fa; /* blue-400 */
    border-bottom-color: #60a5fa;
}
