.login-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-form .logo{
    height: 300px;
    width: 300px;
    background-image: url("/assets/logo2.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    border-radius: 50%;
    background-color: white;
}

.login-form .form{
    margin-top: 20px;
    background-color: orange;
    border: 1px solid #b4b4b4;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.login-form .form .form-field{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px;
}

.login-form .form .form-field .field-title{
    margin-right: 10px;
    color: #777
}