/* styles/custom_success_page.css */

.success-page-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.success-page-icon {
    font-size: 60px;
    color: #28a745; /* Green for success */
    margin-bottom: 25px;
    display: inline-block;
    border: 3px solid #28a745;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 95px;
}

.success-page-box h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #343a40;
}

.success-page-box .text-message {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-page-box .buttons {
    text-align: center;
}

.success-page-box .buttons .btn-primary {
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
}
