/* Social Login Plugin - Frontend Styles */

.social-login-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-login-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #1C1C1C;
}

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

.social-btn {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-btn-google {
    background: #FFFFFF;
    color: #757575;
    border: 1px solid #dadce0;
}

.social-btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.social-btn-facebook {
    background: #1877F2;
    color: #FFFFFF;
}

.social-btn-facebook:hover {
    background: #166FE5;
}

.social-login-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.social-login-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.social-login-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

