.responsive-form {
    margin: auto;
    margin-bottom: 2rem;
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--green-highlight-color);
    background-color:  #f2f2f2;
    padding: 20px;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#preferred_contact_method {
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--green-highlight-color);
}

input, select, textarea {
    flex: 100%;
    min-width: 100%;
}

textarea {
    min-height: 4.7rem;
}

input, select {
    font-size: 1rem;
    min-width: 45%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

textarea {
    min-width: 45%;
    height: 75px;
    margin-bottom: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

input[type=submit] {
    cursor: pointer;
    align-self: center;
    padding: 14px;
    margin: 8px 0;
    width: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background-color: var(--green-highlight-color);
    border: none;
    border-radius: 10px;
    transition: 0.5s;
}

abbr.region {
    text-decoration: none;
}

input[type=submit]:active {
    transform: scale(0.95);
}

div.vcard {
    margin-bottom: 2rem;
}

@media screen and (orientation: landscape) {
    textarea {
        resize: none;
    }
}
