.information {
    text-align: center;
    margin: 0 auto;
    margin-top: 75px;
    font-size: 28px;
}

.information button {
    font-size: 22px;
    padding: 12px 16px;
    border-radius: 5px;
    cursor: pointer;
    background-color: rgb(231,26,26);
    border: 2px solid black;
    color: white;
}

.information button:hover {
    scale: 1.05;
}



.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

form {
    border: 1px solid black;
    display: grid;
    place-items: left;
    grid-template-columns: 1fr;
    width: 50%;
    border-radius: 10px;
    background-color: rgb(220,220,220)
}

.form-group {
    display: grid;
    text-align: left;
    padding: 25px;
}

.form-group label {
    padding-bottom: 10px;
    font-size: 22px;
}

.form-group input {
    font-size: 22px;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid black;
    max-width: 100%;
    box-sizing: border-box;
}

form button {
    width: 50%;
    margin-left: 25px;
    font-size: 24px;
    margin-bottom: 25px;
    padding: 12px 16px;
    cursor: pointer;
    background-color: rgb(231,26,26);
    color: white;
    border: 2px solid black;
    border-radius: 10px;
    
}

form button:hover {
    scale: 1.05;
}


@media (max-width: 767px) {
    
    .information {
        width: 75%;
    }

    .form-container {
        margin-bottom: 50px;
    }

    form {
        width: 80%;
    }

    .form-group input {
        width: 100%;
    }


}