

* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../upload/images/logo/mainbanner-desktop.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
}

.form-title{
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 20px rgba(0,0,0,0.6);
    overflow: hidden;
}

.wrapper form{
    padding: 10px 30px 50px 30px;
}
.wrapper form .field{
    height: 50px;
    width: 100%;
    margin-top: 20px;
    position: relative;
}
.wrapper form .field input{
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 17px;
    border: 1px solid lightgrey;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align:center;
    padding: 0 -17px 10px;
}

.wrapper form .field input:focus,
form .field input:valid{
    border-color: #4158d0;
}

.logo   {
    width: 100%;
    height: 168px;
}

.wrapper form .field input[type="submit" i] {
    width: 325px;
}

h1.signin {
    text-align: center;
    font-size: 25px;
}