.contact-box {
    background: #f2f2f2;
    border: 5px solid #0060c9;
    border-radius: 60px;
    padding: 35px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 0 #888;
}
.contact-box label {
    color: #003d7a;
    font-weight: 700;
    display: block;
    margin: 18px 0 8px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}
.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 4px solid #aaa;
    border-radius: 60px;
    font-size: 16px;
    outline: none;
    font-family: 'Roboto', sans-serif;
    transition: 0.1s;
}
.contact-box input:focus,
.contact-box textarea:focus {
    border-color: #ffcc00;
}
.contact-box textarea {
    border-radius: 40px;
    height: 130px;
    resize: vertical;
}
#submit-btn {
    margin-top: 30px;
    width: auto;
    padding: 14px 45px;
    font-size: 20px;
}

.content-area h2 {
    text-align: center;
}
.status-note {
    color: #701e1e;
    font-style: italic;
    background: #ffe6e6;
    padding: 8px 25px;
    border-radius: 50px;
    border: 3px solid #701e1e;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* mobile stuff */

@media (max-device-width: 900px) {

    .contact-box {
        max-width: 900px;
        padding: 70px;
        border-radius: 100px;
    }

    .contact-box label {
        font-size: 32px;
        margin: 30px 0 14px;
    }

    .contact-box input,
    .contact-box textarea {
        font-size: 26px;
        padding: 26px 30px;
        border-radius: 90px;
    }

    .contact-box textarea {
        height: 240px;
        border-radius: 60px;
    }

    #submit-btn {
        font-size: 30px;
        padding: 22px 80px;
    }

    .status-note {
        font-size: 22px;
        padding: 16px 40px;
    }
}