@font-face {
    font-family: Metropolis;
    src: url("../font/metropolis/Metropolis-Medium.otf");
}
* {
    padding: 0;
    margin: 0;
    font-family: Metropolis;
}
body {
    background-color: #efeff2;
}
.container-fluid, .col-lg-12, .col-lg-10, .col-lg-9, .col-lg-4, .col-lg-3, .col-lg-2 {
  padding: 0;
}
.content {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 15px;
    margin: auto auto;
    width: 90%;
    border-radius: 5px;
    box-shadow: 0px 2px rgba(0, 0, 0, 0.1);
}
.form .branding{
    height: 45px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.form-control {
    border: none;
    background-color: #f9f9f9;
}
.form-control:focus {
    background-color: #f9f9f9;
    box-shadow: 0px 2px rgba(0, 0, 0, 0.1);
}
.btn-login {
    width: 100%;
    padding: 12px 15px;
    background-color: red;
    color: white;
}
.btn-login:hover {
    color: white;
}
.btn:focus{
    border: none !important;
    box-shadow: none !important;
}
@media (min-width: 1015px) { 
    .form {
        width: 33.3%;
    }
}