@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@media only screen and (max-width: 425px) {
    #formContainer {
        padding: 0 10px !important;
    }

    #bg {
        border-radius: 0px !important;
        margin: 78px 0px !important;
    }

}

*{
    font-family: 'Roboto', sans-serif;
}

#form {
    background-color: rgb(235, 235, 235);
    padding: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

#formContainer {
    padding: 0 50px;
    margin-top: -150px;
}

#bg {
    display: flex;
    flex-direction: row;
    margin: 90px 10px;
    border-radius: 10px;
    background-image: url('./img/bg.jpg');
    background-size: cover;
    padding-top: 20px;
    height: 300px;
}

.input {
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.162);
}

.button{
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: opx 1px 5px 0px rgba(0, 0, 0, 0.162);
    background-color: #e72c33;
    color: white;
    cursor: pointer;
}