/* Social Login Styles */

.social-login-container {
    margin: 20px 0;
    text-align: center;
}

.social-login-divider {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.social-login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.social-login-divider span {
    background: #fff;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-social:active {
    transform: translateY(0);
}

.btn-google {
    border-color: #4285F4;
    color: #4285F4;
}

.btn-google:hover {
    background: #4285F4;
    color: #fff;
    border-color: #4285F4;
}

.btn-facebook {
    border-color: #1877F2;
    color: #1877F2;
}

.btn-facebook:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-login-buttons {
        max-width: 100%;
    }
    
    .btn-social {
        padding: 15px 20px;
        font-size: 16px;
    }
}

/* Error Page Styles */
.social-login-error {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

.social-login-error .alert {
    text-align: center;
    padding: 30px;
}

.social-login-error h4 {
    margin-bottom: 15px;
    color: #721c24;
}

.social-login-error p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Account Form Integration */
#account-creation_form .social-login-container,
#login_form .social-login-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Customer Account Page Integration */
.account-page .social-login-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
} 