/* Shared flat button styles for Account views (Login, Forgot/Reset Password, etc.) */

/* Base button/link styling */
.sso-btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    background-color: var(--stirista-primary);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sso-btn:hover {
    background-color: var(--stirista-primary-hover);
    color: #fff;
    text-decoration: none;
}

/* Full-width primary action (used by Login/Reset/Forgot/SetPassword) */
.sso-btn--block {
    width: 100%;
}

/* Size variants (tuned to match existing pages) */
.sso-btn--md {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
}

.sso-btn--lg {
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
}

.sso-btn--sm {
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 8px;
}

/* Hover lift helpers (optional) */
.sso-btn--lift-sm:hover {
    transform: translateY(-1px);
}

.sso-btn--lift-md:hover {
    transform: translateY(-2px);
}

/* Disabled state */
.sso-btn:disabled,
.sso-btn.is-disabled {
    background-color: #adb5bd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

.sso-btn:disabled:hover,
.sso-btn.is-disabled:hover {
    background-color: #adb5bd;
    transform: none;
    box-shadow: none;
}
