#contact .content {
    display: flex;
    width: 31rem;
    flex-direction: column;
    gap: 20px;
}

#contact .content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

#contact .content form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

form .input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}

.input-group input {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 16px;
}

.input-group textarea {
    width: 100%;
    height: 120px;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    resize: none;
}

form button {
    min-width: 100%;
}