    /* Google Button Styling */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #3c4043;
    text-decoration: none;
    transition: all 0.2s ease;
}

.google-btn img {
    width: 18px;
    height: 18px;
}

.google-btn span {
    font-weight: 500;
}

.google-btn:hover {
    background: #f7f8f8;
    box-shadow: 0 1px 3px rgba(60,64,67,.3);
    text-decoration: none;
    color: #3c4043;
}

.google-btn:active {
    background: #eee;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}