* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            #f6f8fb 0%,
            #ffffff 100%
        );

    color: #151515;
}


.page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}


.container {
    width: 100%;
    max-width: 720px;

    margin: auto;

    padding: 60px 24px 40px;

    text-align: center;
}


/* =========================
   LOGO
========================= */

.logo-wrapper {
    margin-bottom: 20px;
}

.logo-img {
    display: block;

    width: 260px;
    max-width: 75%;

    height: auto;

    margin: 0 auto;
}


/* =========================
   TAGLINE
========================= */

.tagline {
    margin-bottom: 34px;

    font-size: 17px;
    color: #777;

    line-height: 1.5;
}


/* =========================
   SEARCH BOX
========================= */

.search-box {
    width: 100%;

    display: flex;
    align-items: center;

    background: #fff;

    border:
        1px solid
        rgba(0, 0, 0, 0.08);

    border-radius: 18px;

    padding: 5px 8px;

    box-shadow:
        0 16px 45px
        rgba(0, 0, 0, 0.10);

    transition: 0.25s;
}


.search-box:focus-within {
    transform: translateY(-2px);

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.14);
}


.search-icon {
    width: 52px;

    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;

    opacity: 0.5;
}


.search-box input {
    width: 100%;

    border: 0;
    outline: 0;

    padding:
        18px
        15px
        18px
        4px;

    background: transparent;

    font-size: 17px;

    color: #151515;
}


.search-box input::placeholder {
    color: #aaa;
}


/* =========================
   BUTTON
========================= */

.search-button {
    width: 100%;

    margin-top: 22px;

    padding: 17px 20px;

    border: 0;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #ff9d7c,
            #f06c68
        );

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 30px
        rgba(240, 108, 104, 0.30);

    transition:
        transform 0.2s,
        box-shadow 0.2s,
        opacity 0.2s;
}


.search-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 35px
        rgba(240, 108, 104, 0.38);
}


.search-button:active {
    transform: scale(0.99);
}


.search-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


/* =========================
   MESSAGE
========================= */

.message {
    min-height: 24px;

    margin-top: 20px;

    font-size: 14px;

    color: #777;
}


.message.success {
    color: #16994d;
}


.message.error {
    color: #d93b3b;
}


/* =========================
   INFO
========================= */

.info {
    margin-top: 10px;

    font-size: 13px;

    color: #aaa;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 0 20px 28px;

    text-align: center;

    font-size: 12px;

    color: #aaa;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .container {
        padding:
            45px
            18px
            30px;
    }

    .logo-img {
        width: 210px;
    }

    .tagline {
        font-size: 15px;

        margin-bottom: 28px;
    }

    .search-box {
        border-radius: 15px;
    }

    .search-box input {
        font-size: 16px;

        padding:
            16px
            12px
            16px
            2px;
    }

    .search-icon {
        width: 45px;

        font-size: 18px;
    }

    .search-button {
        padding: 16px;

        border-radius: 14px;

        font-size: 16px;
    }

}