:root {
    --PrimaryColor: #9A5126;
    --SecondColor: #269999;
    --ThirdColor: #808080;
    --FourthColor: #6C87AE;
    --FifthColor: #282828;
    --WhiteColor: #FAF6F0;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}
.form-container h2 {
    color: #0D6E60;
    margin-bottom: 20px;
}
.form-container input, .form-container textarea {
    width: 100%;
    padding: 22px;
    margin-bottom: 10px;
    border: none;
    border-radius: 25px;
    background: #F0F0F0;
    font-size: 14px;
    outline: none;
}
.form-container button {
    width: 100%;
    padding: 22px;
    border: none;
    border-radius: 25px;
    background: var(--SecondColor);
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.form-container button:hover {
    background: var(--PrimaryColor);
    transition: 0.3s ease;
}

@media screen and (max-width: 700px) {
    .right-footer{
        margin-top: 70px;
        width: 90%;
    }
}