/**
 * Standalone CSS for Login and Register Pages
 * No external dependencies required
 */

/* Container and Layout */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-content {
    width: 400px;
    max-width: 28rem;
}

.auth-card {
    background-color: var(--color-bg-card);
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    transition: background-color 0.3s ease;
}

/* Social Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    background-color: var(--color-bg-card);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    width: 100%;
}

.social-btn:hover {
    background-color: var(--color-gray-50);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

html.dark .social-btn:hover,
.dark .social-btn:hover {
    background-color: var(--color-gray-600);
}

.social-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.divider span {
    padding: 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.ms-button {
    display: inline-block;
    background-color: #2F2F2F;
    color: #FFFFFF;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    border: 1px solid #000;
}

.ms-button:hover {
    background-color: #000000;
    color: #FFF;
}
