/* Success Message Style */
.success-message {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto 0;
    backdrop-filter: blur(10px);
}

.success-message .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #34D399;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}