/* Success Page */
.page-success {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.success-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-card .success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-card .success-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.4));
}

.success-card h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.success-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.success-card .btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #667eea;
    background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.success-card .btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .success-card {
        padding: 36px 28px;
    }

    .success-card h2 {
        font-size: 24px;
    }

    .success-card .success-icon svg {
        width: 70px;
        height: 70px;
    }
}