
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
html{
    height: 100%;
}

body {
    background-image: url('../img/images/fysaRosa1.png');
    background-repeat: repeat;
    background-position-y: -55px;}
.wrap {
    margin-top: 5%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form{
    background-color:#e3e4e5;

    width: 30%;
    margin: 0 auto;
    padding: 2rem;
    border: 2px solid #6d0c2e;
    border-radius: 20px;
}
.form-input{
    width: 100%;
}

.form-group{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.form-button{

    margin-left:35%;
    margin-top:5%;
    color:white;
    background-color:#6d0c2e;
    padding: 10px 20px;
    border-radius: 4px;
}

input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.form-group label{
    position: relative
}

.form-header{
    text-align: center;
}

.form-header h4{
    text-align: center;
    margin-bottom: 30px;
}

.form-label{
    width: 100%;
}

.form-label b{
    margin-left: 20px;
}

.form-label img{
    width: 15%;
    height: 15%;
}
.label{
    display: flex;
    align-items: center;
    margin-left:5%;
    font-size:18px;
}

.button-login{
    justify-self: center;
}


@media screen and (max-width:1200px){
    .login-form{
        width: 40%;
    }


}