.steam-oauth-container {
    margin: 10px 0;
}

.steam-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: #171a21;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid #2a475e;
}

.steam-login-btn:hover {
    background: #2a475e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 26, 33, 0.3);
}

.steam-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(23, 26, 33, 0.3);
}

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

.steam-login-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    border-color: #9ca3af;
}

.steam-login-btn:disabled:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}
