body {
    background-color: #F4F3EF;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    margin-top: 10%;
}

img {
    width: 100%;
    border-radius: 8px 0px 0px 8px;
}

div.login-inputs {
    background-color: white;
    width: 50%;
    border-radius: 0px 8px 8px 0px;
}

.btn-login {
    background-color: #ef8157;
    border-color: #ef8157;

    &:hover {
        background-color: #f1946f;
        border-color: #f1946f;
    }
}

@media screen and (max-width:750px) {
    div.login-inputs {
        width: 100%;
        border-radius: 0px 0px 8px 0px;
    }

    img {
        border-radius: 8px 8px 0px 0px;
    }
}