.container {
    width: clamp(308px, 90vw, 600px);
    margin: 0 auto 0 auto;
    padding: 20px;
    background-color: #fff;
}

.contactFormLabel {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #2C6C8B;
}

label {
    font-weight: bold;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    border: 1px solid #ccc;
    border-radius: 0 !important;
    padding: 10px;
    font-family: inherit;
    font-size: inherit;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border-radius: 0;
}

textarea {
    height: 200px;
    resize: none;
}

input[type="submit"] {
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    height: 44px;
    padding: 10px;
    border: none;
    border-radius: 0px;
    background-color: #2C6C8B;
    color: #ffffff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #ffffff;
    color: #2C6C8B;
    border: 1px solid black;
}

.view {
    height: clamp(726px, calc(100vh - 170px), calc(100vh - 170px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#responseMessage {
    height: 44px;
}

@media (max-width: 555px) {
    .view {
        height: clamp(766px, calc(100dvh - 50px), calc(100dvh - 50px));
    }
}