.form-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgba(255, 255, 255, 0.466);
    padding: 20px;
    border-radius: 10px;
}

.form-input form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-input input {
    width: 70%;
    text-align: center;
    font-size: 25px;
    border: none;
    background-color: transparent;
    color: #060404;
    border-bottom: 2px solid #c20000;
    margin-bottom: 15px;
    outline: none;
}
.form-input select {
    width: 70%;
    text-align: center;
    font-size: 25px;
    border: none;
    background-color: transparent;
    color: #060404;
    border-bottom: 2px solid #c20000;
    margin-bottom: 15px;
    outline: none;
}

.form-input ::placeholder {
    color: #3B4554;
    font-size: 25px;
}

.form-input button {
    width: 50%;
    font-size: 30px;
    background: #c20000;
    color: white;
    border-radius: 5px;
    margin-top: 5%;
    transition: .8s ease-in-out;
    cursor: pointer;
    padding: 10px 0px 5px;
}

.form-input button:hover {
    background-color: white;
    color: #c20000;
    transition: .8s ease-in-out;
}

@media screen and (max-width: 825px) {
    /* FORM */
    .form-input input {
        width: 80%;
    }
    .form-input select {
        width: 80%;
    }
}

@media screen and (max-width: 710px) {
    /* FORM */
    .form-input {
        width: 100%;
    }
}
@media screen and (max-width: 665px) {
    .form-input input {
        width: 70%;
    }
    .form-input select {
        width: 70%;
    }
}

@media screen and (max-width: 531px) {
    /* FORM */
    .form-title p {
        font-size: 20px;
        line-height: 1.5;
    }
    .form-title h2 {
        font-size: 75px;
    }
    .form-input ::placeholder {
        font-size: 20px;
    }
    .form-input input {
        width: 100%;
    }
    .form-input select {
        width: 100%;
    }
   
    .form-input {
        width: 100%;
        margin-bottom: 15%;
    }
    .form-input button {
        font-size: 20px;
    }
    /* END FORM */
}

@media screen and (max-width: 330px) {
    .form-title h2 {
        font-size: 55px;
    }
}