.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #333;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: background 0.3s;
}

.oauth-btn:hover {
    background: #444;
}

.oauth-btn svg, .oauth-btn img {
    width: 20px;
    height: 20px;
}