/* Google Sign-In Styles */
.social-login {
    margin: 20px 0;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #666;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider span {
    padding: 0 15px;
    background: white;
}

.btn-google {
    background: #db4437;
    color: white;
    border: 2px solid #db4437;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-google:hover {
    background: #c23321;
    border-color: #c23321;
    transform: translateY(-2px);
}

.btn-google i {
    font-size: 18px;
}

.btn-google:active {
    transform: translateY(0);
}

.btn-google.loading {
    opacity: 0.7;
    pointer-events: none;
}
