/* Styles spécifiques pour la page d'inscription */
.register-container {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    padding-top: calc(64px + 2rem); /* Hauteur header mobile + padding */
    position: relative;
    overflow: hidden;
}

/* Effets de fond animés - similaires à login mais avec plus de particules */
.register-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.register-bg-effects::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        hsla(48, 100%, 50%, 0.08) 0%, 
        hsla(210, 45%, 8%, 0.12) 50%, 
        hsla(24, 100%, 50%, 0.08) 100%
    );
    animation: gradientShift 10s ease-in-out infinite;
}

.register-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, hsla(48, 100%, 50%, 0.1) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

.orb:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.5; }
}

.register-form-container {
    width: 100%;
    max-width: 900px;
    background: hsla(220, 45%, 8%, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid hsla(48, 100%, 50%, 0.25);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 
        0 25px 50px hsla(0, 0%, 0%, 0.4),
        0 0 0 1px hsla(48, 100%, 50%, 0.15);
    position: relative;
    z-index: 2;
}

.register-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    text-align: center;
}

.register-subtitle {
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Styles optimisés pour formulaire plus large */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-label .required {
    color: var(--secondary);
    font-size: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: hsla(220, 45%, 8%, 0.5);
    color: var(--foreground);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(48, 100%, 50%, 0.1);
    background: hsla(220, 45%, 8%, 0.8);
}

.form-input:hover {
    border-color: hsla(48, 100%, 50%, 0.3);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

/* Hint discret pour mot de passe */
.password-hint {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: var(--transition-smooth);
}

.password-toggle:hover {
    color: var(--accent);
    background: hsla(48, 100%, 50%, 0.1);
}

.password-toggle i {
    width: 1rem;
    height: 1rem;
}

/* États de validation en temps réel */
.form-input.valid {
    border-color: hsl(120, 40%, 50%);
    box-shadow: 0 0 0 3px hsla(120, 40%, 50%, 0.1);
    background: hsla(120, 40%, 50%, 0.05);
}

.form-input.invalid {
    border-color: var(--destructive);
    box-shadow: 0 0 0 3px hsla(0, 84%, 60%, 0.1);
    background: hsla(0, 84%, 60%, 0.05);
}

.form-input.validating {
    border-color: var(--accent);
    background: hsla(48, 100%, 50%, 0.05);
}

.field-validation {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-validation.valid {
    color: hsl(120, 40%, 50%);
}

.field-validation.invalid {
    color: var(--destructive);
}

.field-validation i {
    width: 0.75rem;
    height: 0.75rem;
}

/* Indicateur de force du mot de passe - Style amélioré */
.password-strength {
    margin-top: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    background: hsla(220, 45%, 8%, 0.8);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-out;
    box-shadow: 
        0 2px 8px hsla(0, 0%, 0%, 0.1),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.1);
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-strength::before {
    content: "🔒";
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.password-strength.strength-weak {
    border-color: var(--destructive);
    background: hsla(0, 84%, 60%, 0.15);
    box-shadow: 
        0 2px 8px hsla(0, 84%, 60%, 0.2),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.1);
}

.password-strength.strength-weak::before {
    content: "⚠️";
    opacity: 1;
}

.password-strength.strength-medium {
    border-color: var(--accent);
    background: hsla(48, 100%, 50%, 0.15);
    box-shadow: 
        0 2px 8px hsla(48, 100%, 50%, 0.2),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.1);
}

.password-strength.strength-medium::before {
    content: "🔐";
    opacity: 1;
}

.password-strength.strength-strong {
    border-color: hsl(120, 40%, 50%);
    background: hsla(120, 40%, 50%, 0.15);
    box-shadow: 
        0 2px 8px hsla(120, 40%, 50%, 0.2),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.1);
}

.password-strength.strength-strong::before {
    content: "🛡️";
    opacity: 1;
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.strength-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.password-strength.strength-weak .strength-text {
    color: var(--destructive);
    font-weight: 700;
}

.password-strength.strength-medium .strength-text {
    color: var(--accent);
    font-weight: 700;
}

.password-strength.strength-strong .strength-text {
    color: hsl(120, 40%, 50%);
    font-weight: 700;
}

/* Effet de focus sur l'indicateur de force */
.password-strength:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px hsla(0, 0%, 0%, 0.15),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.2);
}

.password-strength.strength-weak:hover {
    box-shadow: 
        0 4px 12px hsla(0, 84%, 60%, 0.3),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.2);
}

.password-strength.strength-medium:hover {
    box-shadow: 
        0 4px 12px hsla(48, 100%, 50%, 0.3),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.2);
}

.password-strength.strength-strong:hover {
    box-shadow: 
        0 4px 12px hsla(120, 40%, 50%, 0.3),
        inset 0 1px 0 hsla(255, 255%, 255%, 0.2);
}

.submit-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--accent-foreground);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px hsla(48, 100%, 50%, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.form-footer p {
    color: var(--muted-foreground);
    margin: 0;
}

.form-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Messages d'erreur et succès */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.alert-error {
    background: hsla(0, 84%, 60%, 0.1);
    border: 1px solid hsla(0, 84%, 60%, 0.3);
    color: hsl(0, 84%, 60%);
}

.alert-success {
    background: hsla(120, 40%, 50%, 0.1);
    border: 1px solid hsla(120, 40%, 50%, 0.3);
    color: hsl(120, 40%, 50%);
}

/* Style par défaut plus visible */
.password-strength {
    border-left: 4px solid var(--accent);
}

.password-strength::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, hsla(48, 100%, 50%, 0.1), transparent);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-strength:not(.strength-weak):not(.strength-medium):not(.strength-strong):hover::after {
    opacity: 1;
}

/* Responsive */
@media (min-width: 1024px) {
    .register-container {
        min-height: calc(100vh - 80px);
        padding-top: calc(80px + 2rem); /* Hauteur header desktop + padding */
    }
}

@media (max-width: 1200px) {
    .register-form-container {
        max-width: 800px;
        margin: 1rem;
    }
}

@media (max-width: 1024px) {
    .register-form-container {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .register-form-container {
        max-width: 650px;
        padding: 2.5rem 2rem;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-title {
        font-size: 1.625rem;
    }
    
    /* Adaptation mobile pour l'indicateur de force */
    .password-strength {
        padding: 0.75rem;
        min-height: 40px;
    }
    
    .password-strength::before {
        font-size: 0.9rem;
    }
    
    .strength-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .register-form-container {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }
    
    .register-title {
        font-size: 1.375rem;
    }
    
    /* Version mobile compacte */
    .password-strength {
        padding: 0.625rem;
        min-height: 36px;
        margin-top: 0.5rem;
    }
    
    .strength-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* ================================================== */
/* CASE À COCHER CGU */
/* ================================================== */

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.75rem 0;
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    opacity: 0.8;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(44, 62, 80, 0.1);
}

/* Hover state */
.checkbox-container:hover .checkmark {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

/* État coché */
.checkbox-container input:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--primary), #e67e22);
    border-color: var(--primary);
    transform: scale(1.05);
}

.checkbox-container input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkAnimation 0.2s ease-in-out;
}

@keyframes checkAnimation {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary);
    flex: 1;
}

.checkbox-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.checkbox-text .required {
    color: #e74c3c;
    margin-left: 0.25rem;
}

/* État d'erreur */
.checkbox-container.error .checkmark {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.checkbox-container.error .checkbox-text {
    color: #e74c3c;
}

/* Focus state pour l'accessibilité */
.checkbox-container input:focus ~ .checkmark {
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

/* Animation de validation */
.checkbox-container.valid .checkmark {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .checkbox-container {
        padding: 0.625rem 0;
    }
    
    .checkmark {
        height: 18px;
        width: 18px;
        margin-right: 0.625rem;
    }
    
    .checkbox-container input:checked ~ .checkmark:after {
        left: 5px;
        top: 1px;
        width: 3px;
        height: 7px;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .checkmark {
        margin-right: 0.5rem;
    }
    
    .checkbox-text {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   SÉLECTION DES MÉTHODES D'INSCRIPTION
   ========================================================================== */

/* Animations pour les transitions */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.method-selection {
    margin-bottom: 2rem;
}

.method-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.method-btn:hover {
    border-color: #f39c12;
    background: #fef9f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
}

.method-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.1);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.method-google:hover {
    border-color: #4285F4;
    background: rgba(66, 133, 244, 0.05);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
}

.method-facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.05);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15);
}

.method-email:hover {
    border-color: #f39c12;
    background: #fef9f0;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
}

.method-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    position: relative;
}

.method-divider::before,
.method-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.method-divider span {
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    background: #ffffff;
}

.method-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.method-note a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.method-note a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* ==========================================================================
   FORMULAIRES SOCIAUX
   ========================================================================== */

.social-form,
.email-form {
    animation: slideInRight 0.3s ease-out;
}

.form-back {
    margin-bottom: 1.5rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: #f9fafb;
    color: #2c3e50;
    border-color: #d1d5db;
}

.social-auth-container {
    text-align: center;
    padding: 2rem 0;
}

.social-auth-header {
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-icon {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.facebook-icon {
    background: #1877F2;
}

.social-auth-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.social-auth-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.google-auth-btn,
.facebook-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.google-auth-btn {
    background: #4285F4;
    color: white;
}

.google-auth-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.facebook-auth-btn {
    background: #1877F2;
    color: white;
}

.facebook-auth-btn:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.auth-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.auth-disclaimer a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.auth-disclaimer a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Style pour les textes d'aide des champs */
.form-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* ==========================================================================
   ACTIONS APRÈS INSCRIPTION RÉUSSIE
   ========================================================================== */

/* Message de succès dans le contexte de l'inscription */
.success-actions + .alert-success,
.alert-success {
    margin-bottom: 2rem;
}

.success-message {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    color: #0c4a6e;
    font-weight: 600;
    line-height: 1.6;
}

.success-subtitle {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.success-actions .btn-primary,
.success-actions .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.success-actions .btn-primary {
    background: #f39c12;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.success-actions .btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.success-actions .btn-secondary {
    background: #ffffff;
    color: #2c3e50;
    border-color: #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.success-actions .btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive pour les nouvelles méthodes */
@media (max-width: 768px) {
    .method-title {
        font-size: 1.25rem;
    }
    
    .method-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
    
    .social-auth-header h3 {
        font-size: 1.25rem;
    }
    
    .form-hint {
        font-size: 0.75rem;
    }
    
    .success-actions {
        margin-top: 1.5rem;
    }
    
    .success-actions .btn-primary,
    .success-actions .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .success-message {
        padding: 1.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .success-subtitle {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

