.gsso-login-wrapper {
    margin: 20px 0;
    text-align: center;
}

.gsso-separator {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.gsso-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
}

.gsso-separator span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background-color: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.gsso-wallet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gsso-wallet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gsso-wallet-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gsso-wallet-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.gsso-wallet-button svg {
    flex-shrink: 0;
}

.gsso-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.gsso-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gsso-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.gsso-message.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

#login .gsso-login-wrapper {
    margin-top: 16px;
}

#registerform .gsso-login-wrapper {
    margin-top: 16px;
}