/* Authentication Components - Auth forms and related styles */

/* Auth Container */
.auth-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 32px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 24px;
}

/* Auth Forms */
.auth-form {
    display: none;
}

.auth-form--active {
    display: block;
}

/* Social Auth */
.social-auth {
    margin-top: 24px;
    text-align: center;
}

.social-auth__text {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Auth Messages */
.auth-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.auth-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.auth-message--info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Auth Styles */
@media (max-width: 768px) {
    .auth-container {
        margin: 40px auto;
        padding: 24px;
    }

    .social-buttons {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .auth-container {
        margin: 20px auto;
        padding: 20px;
    }

    .auth-form {
        padding: 0;
    }
} 