* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.forms-container {
    width: 30vw;
    margin: 5vh auto;
    border-radius: 20px;
    background-color: beige;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-styles {
    padding: 10px;
    /* width: 30rem; */
    margin-bottom: 10px;
}
.form-text {
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 700;
    /* background: #d3a625; */
    background: #944324;
    border-radius: 10px;
    text-align: center;
    width: 400px;
}


.form-text p {
    margin: 0 auto;
    color: white;
}

.form-text-services {
    display: flex;
}
.form-styles input {
    width: 100%;
    padding: 15px 0 15px 10px;
    margin: 10px 0;
    border-radius: 10px;
}

.form-styles textarea {
    width: 100%;
    padding: 15px 0 15px 10px;
    margin: 10px 0;
    border-radius: 10px;
}

.form-styles button {
    background: #36476f;
    color: white;
    padding: 7px 15px;
    font-size: 2.5rem;
    border-radius: 10px;
}

.form-styles button:hover {
    cursor: pointer;
}

#contact {
    position: relative;
}

#update-contact {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 2.5rem;
}