/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================
   BODY
========================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #313030;
    min-height: 100vh;
}


/* =========================================
   PAGE
========================================= */

.page {
    min-height: calc(100vh - 60px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(244, 108, 27, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(243, 173, 16, 0.12),
            transparent 35%
        );
}


/* =========================================
   CARD
========================================= */

.card {
    width: 100%;
    max-width: 620px;

    background: #ffffff;

    padding: 55px 50px;

    text-align: center;

    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);

    animation: fadeIn 0.6s ease;
}


/* =========================================
   ICON
========================================= */

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.icon {
    width: 80px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #f46c1b,
        #f3ad10
    );

    color: #ffffff;

    font-size: 42px;
    font-weight: bold;

    box-shadow:
        0 10px 25px rgba(244, 108, 27, 0.25);
}


/* =========================================
   STATUS
========================================= */

.status {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 30px;

    background: #fff3e9;

    color: #f46c1b;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;
}


/* =========================================
   TITLE
========================================= */

h1 {
    margin-top: 22px;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 700;

    color: #313030;
}

h1 span {
    background: linear-gradient(
        45deg,
        #f46c1b,
        #f3ad10
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.description {
    max-width: 480px;

    margin: 20px auto 0;

    font-size: 16px;

    line-height: 1.7;

    color: #6d6d6d;
}


/* =========================================
   DIVIDER
========================================= */

.divider {
    width: 70px;
    height: 4px;

    margin: 30px auto;

    border-radius: 10px;

    background: linear-gradient(
        45deg,
        #f46c1b,
        #f3ad10
    );
}


/* =========================================
   HELP TEXT
========================================= */

.help-text {
    font-size: 14px;

    line-height: 1.6;

    color: #777;

    margin-bottom: 25px;
}


/* =========================================
   BUTTON
========================================= */

.button {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 10px;

    background: linear-gradient(
        45deg,
        #f46c1b,
        #f3ad10
    );

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: bold;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(244, 108, 27, 0.25);
}


/* =========================================
   BACK LINK
========================================= */

.back {
    display: block;

    margin-top: 20px;

    color: #777;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.2s ease;
}

.back:hover {
    color: #f46c1b;
}


/* =========================================
   FOOTER
========================================= */

footer {
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    background: #313030;

    color: #cccccc;

    font-size: 12px;

    text-align: center;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {

    .page {
        padding: 25px 15px;
    }

    .card {
        padding: 40px 25px;
    }

    .icon {
        width: 65px;
        height: 65px;

        font-size: 34px;
    }

    h1 {
        font-size: 29px;
    }

    .description {
        font-size: 15px;
    }

}
