.contact {
    width: 100%;
    height: 100vh;
    text-align: center;
    align-items: center;
}

.inquiry {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

input {
    width: 100%;
    height: 50px;
    color: black;
    background-color: white;
    border-radius: 10px;
}

textarea {
    width: 100%;
    height: 150px;
    color: black;
    background-color: white;
    border-radius: 10px;
}

.contact-inputs:focus {
    border: 3px solid gold;
}

.contact-inputs {
    padding-left: 20px;
}

@media(max-width: 600px) {
    input {
        width: 80%;
        height: 40px;
    }

    textarea {
        width: 80%;
        height: 140px;
    }

    .contact h2 {
        font-size: 30px;
        line-height: 40px;
        width: 80%;
    }

    .contact p {
        width: 70%;
    }

    .contact {
        height: 120vh;
    }
}