.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #757575;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 20px auto;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-btn:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #f8f8f8;
}

.google-btn img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #666;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.auth-separator span {
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

.social-auth-container {
    margin: 20px 0;
    text-align: center;
}