/* ================================
   Confirmation Page
   ================================ */

.confirmation-page {
    min-height: 60vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;

    box-sizing: border-box;

    font-family: "Open Sans", Arial, sans-serif!important;
    background: #f7f9fc;
}


/* Confirmation box */

.confirmation-box {
    width: 100%;
    max-width: 700px;

    padding: 60px 40px;

    box-sizing: border-box;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e3e7ed;
    border-radius: 20px;

    box-shadow: 0 12px 40px rgba(7, 21, 57, 0.08);
    font-family: "Open Sans", Arial, sans-serif!important;
}


/* Headline */

.confirmation-box h1 {
    margin: 0 0 18px;

    font-family: "Open Sans", Arial, sans-serif!important;

    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;

    color: #071539;
}


/* Message */

.confirmation-box p {
    margin: 0 0 32px;

    font-family: "Open Sans", Arial, sans-serif!important;

    font-size: 19px;
    line-height: 1.6;

    color: #526176;
}


/* Button */

.confirmation-button {
    display: inline-block;

    padding: 14px 28px;

    font-family: "Open Sans", Arial, sans-serif!important;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;

    color: white!important;

    background: #168fdc;

    
    border-radius: 10px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Button hover */

.confirmation-button:hover {
    color: #ffffff;

    background: #071539;
    border-color: #071539;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(7, 21, 57, 0.18);
}


/* Mobile */

@media (max-width: 600px) {

    .confirmation-page {
        min-height: 50vh;
        padding: 40px 16px;
    }

    .confirmation-box {
        padding: 45px 25px;
        border-radius: 16px;
    }

    .confirmation-box h1 {
        font-size: 38px;
    }

    .confirmation-box p {
        font-size: 17px;
    }

    .confirmation-button {
        width: 100%;
        box-sizing: border-box;
    }
}