h3 {
    font-size: 16pt;
    text-align: center;
    color: #02203d;
    margin: 50px 0;
    font-weight: normal;
    line-height: 30px;
}

form {
    background-color: #021f3d;
    color: white;
    max-width: 500px;
    margin: auto;
    padding: 20px 30px;
}

form h2 {
    font-size: 20pt;
    text-align: center;
    margin: 0;
}

form p {
    text-align: center !important;
    font-size: 11pt !important;
}

form .field {
    margin-bottom: 10px;
}

form .field.two-in-line {
    display: flex;
    justify-content: space-between;
}

form .field input, form .field textarea {
    background-color: #01152a;
    border: 2px solid #0c3251;
    border-radius: 5px;
    width: 100%;
    padding: 10px 12px;
    color: white;
}

form .field.two-in-line input {
    width: 49%;
}

form button {
    background: linear-gradient(#007fe7, #026cc6);
    color: white;
    cursor: pointer;
    font-size: 14pt;
    font-weight: bold;
    padding: 15px 70px;
    margin: 20px auto 0;
    display: block;
    border: 0;
    border-radius: 5px;
}

form button:hover {
    background: linear-gradient(#026cc6, #007fe7);
}
input::placeholder,
textarea::placeholder {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}