.confirmation-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f6f9;
}

.confirmation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.confirmation-title {
    color: #1b5e20;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.confirmation-text {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.confirmation-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.btn-back {
    margin-top: 25px;
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

    .btn-back:hover {
        background-color: #1b5e20;
        color: white;
    }
