.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: left;
}

.form .form-row {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
}

.form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    width: 100%;
}

.form input {
    font-size: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    
}

.form textarea {
    resize: vertical;
    min-height: 4rem;
    height: 5.5rem;
    max-height: 16rem;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: none;
    border-bottom: 2px solid #ccc;
}

.form input:focus, 
.form textarea:focus {
    outline: 1px solid red;
}

.form ::placeholder {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.form button {
    font-size: 1rem;
    line-height: 1em;
    padding: 0.8em 1em;
    background-color: var(--color-secondary);
    border: none;
    color: #fff;
    box-shadow: var(--shadow);
}