* {
    -ms-user-select: None;
    -moz-user-select: None;
    -webkit-user-select: None;
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-weight: 400;
}
@import url('https://fonts.googleapis.com/css?family=Nunito Sans');
button {
   border:none;
}
  
button:hover {
    cursor: pointer;
}
button:focus {
    outline: none;
}
  
input {
    border: none;
}
input:focus {
    outline: none;
}
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: rgba(229,21,63,1);
    background: -moz-radial-gradient(center, ellipse cover, rgba(229,21,63,1) 0%, rgba(230,65,98,1) 72%, rgba(230,65,98,1) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(229,21,63,1)), color-stop(72%, rgba(230,65,98,1)), color-stop(100%, rgba(230,65,98,1)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(229,21,63,1) 0%, rgba(230,65,98,1) 72%, rgba(230,65,98,1) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(229,21,63,1) 0%, rgba(230,65,98,1) 72%, rgba(230,65,98,1) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(229,21,63,1) 0%, rgba(230,65,98,1) 72%, rgba(230,65,98,1) 100%);
    background: radial-gradient(ellipse at center, rgba(229,21,63,1) 0%, rgba(230,65,98,1) 72%, rgba(230,65,98,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5153f', endColorstr='#e64162', GradientType=1 );
}
.left_container {
    position: relative;
    background-color: white;
    width: 50vw;
    min-height: 100vh;
    display: flex!important;
    align-items: center;
    overflow: hidden;
}

.login {
    width: 50vw;
    float: left;
}
.login form {
    width: 100%;
}
.login form input {
    width: 60%;
    margin-left: 20%;
    float: left;
    background-color: whitesmoke;
    height: 3rem;
    margin-bottom: 1vh;
    border-radius: 10px;
    font-weight: 500;
    padding-left: 0.4rem;
    font-size: 1rem;
}
.login form button {
    width: 60%;
    margin-left: 20%;
    float: left;
    background-color: #e7153f;
    height: 3rem;
    margin-bottom: 1vh;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}
.logo form button:hover {
    cursor: pointer;
}
.logo {
    width: 100%;
    height: 10rem;
    fill: #e7153f;
    text-align: center;
    margin-bottom: 2vh;
}

@media screen and (max-width: 70em) {
    .left_container {
        width: 100vw;
    }
    .login {
        width: 100vw;
    }

    .login form input {
        width: 80%;
        margin-left: 10%;
    }
    .login form button {
        width: 80%;
        margin-left: 10%;
    }
}