/**
 * Google Login Module CSS
 */

.google-login-container {
    margin: 20px 0;
    text-align: center;
}

.google-login-divider {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.google-login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.google-login-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
}

.google-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #757575;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.google-login-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #757575;
}

.google-login-btn:active {
    background: #eee;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.google-icon {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .google-login-btn {
        width: 100%;
        padding: 12px 16px;
    }
}
