.form {
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px auto 0;
}

form {
    width: 100%;
}

.form-control {
    width: 100%;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border-radius: 0.2em;
    height: 30px;
    margin-top: 10px;
    border: 1px solid var(--primary);
}

.form-control:hover,
.form-control:focus {
    opacity: 80%;
}

.form-textarea-input {
    height: auto;
    min-height: 60px;
    height: auto !important; /* for IE as it does not support min-height */
    height: 30px; /* for IE as it does not support min-height */
    resize: none;
}

.form-label {
    display: block;
    text-transform: uppercase;
}

.form-group {
    margin-top: 20px;
}

.submit-button {
    background-color: var(--primary);
    color: white;
    border: none;
    box-shadow: none;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
    text-transform: uppercase;
}

.submit-button:hover,
.submit-button:focus {
    opacity: 80%;
}

.reset-button {
    background-color: var(--accent);
    color: white;
    border: none;
    box-shadow: none;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
    text-transform: uppercase;
}

.reset-button:hover,
.reset-button:focus {
    opacity: 80%;
}
