* {
    box-sizing: border-box;
}

html,
body {
    background: #ffffff;
}

body {
    margin: 0;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.5;
}

.page {
    width: min(920px, calc(100% - 32px));
    margin: 28px auto 60px;
}

.logo {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 28px;
}

h1 {
    margin: 0 0 10px;
    text-align: center;
    font-size: 34px;
    line-height: 1.15;
}

h2 {
    margin: 0 0 18px;
    text-align: center;
    font-size: 25px;
    line-height: 1.2;
}

p {
    margin: 0 0 14px;
}

form {
    margin-top: 26px;
}

label {
    display: block;
    margin: 18px 0 7px;
    font-weight: 700;
    font-size: 18px;
}

input,
textarea {
    display: block;
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #aaaaaa;
    border-radius: 4px;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

input {
    min-height: 52px;
}

textarea {
    height: 96px;
    min-height: 96px;
    resize: vertical;
    line-height: 1.4;
}

input:focus,
textarea:focus {
    border-color: #111111;
    outline: 2px solid #cccccc;
    outline-offset: 1px;
}

.char-note {
    margin-top: 5px;
    color: #666666;
    font-size: 14px;
}

.declaration {
    margin-top: 26px;
}

.declaration h2 {
    margin-bottom: 8px;
    text-align: left;
    font-size: 24px;
}

button {
    display: block;
    min-width: 360px;
    max-width: 100%;
    margin: 30px auto;
    padding: 14px 26px;
    border: 0;
    border-radius: 5px;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

button:hover,
button:focus {
    background: #333333;
}

.message {
    margin: 24px 0;
    padding: 18px 20px;
    border: 1px solid;
    border-radius: 5px;
}

.message h2 {
    margin-bottom: 10px;
    text-align: left;
    font-size: 24px;
}

.success {
    border-color: #4d7f4d;
    background: #f1f8f1;
}

.error {
    border-color: #aa3333;
    background: #fff2f2;
}

footer {
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid #cccccc;
    font-size: 16px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .page {
        width: min(100% - 24px, 920px);
        margin-top: 18px;
    }

    h1 {
        font-size: 29px;
    }

    h2 {
        font-size: 22px;
    }

    button {
        width: 100%;
        min-width: 0;
    }
}
