.container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.main {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

    padding: 0 60px;
}

.message-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.message-box > a {
    width: 100%;

    border: none;
    border-radius: 5px;

    color: #ffffff;
    background: #1c242d;

    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
}

form {
    width: 40%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

form > h1 {
    margin: 0;

    text-align: center;
}

form > input:not(form > input[type="submit"]) {
    width: 100%;

    border: none;
    border-radius: 5px;

    background: #f2f3f7;

    font-size: 16px;

    padding: 10px;

    outline: none;
}

.report-box {
    text-align: center;
    text-transform: uppercase;

    display: none;
}

form > input[type="submit"] {
    width: 100%;

    border: none;
    border-radius: 5px;

    color: #ffffff;
    background: #1c242d;

    font-size: 16px;

    padding: 10px;
}

.note {
    font-size: 12px;

    text-align: center;
    text-transform: uppercase;
}

.note > a {
    font-weight: bold;
}

@media only screen and (max-width: 900px) {
    .main {
        padding: 0 20px;
    }

    form {
        width: 60%;
    }
}

@media only screen and (max-width: 700px) {
    form {
        width: 100%;
    }
}