*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Roboto', sans-serif;
    background-image: url('/img/logo/login.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.form-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper form{
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 300px;
    padding: 15px;
    border-radius: 5px;
}

.form-wrapper form img{
    align-self: center;
    width: 230px;
    margin-top: 25px;
    user-select: none;
}

.form-wrapper form h1{
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
    font-weight: 200;
    color: grey;
}

.form-wrapper form .error-login {
    font-size: 15px;
    background: #ff000078;
    padding: 5px 2px;
    border: solid 1px red;
    color: black;
    font-weight: 300;
    border-radius: 3px;
}

.form-wrapper form label{
    margin-top: 20px;
    margin-bottom: 5px;
}

.form-wrapper form input{
    height: 35px;
    border-radius: 3px;
    border: 1px solid #ccc;
    outline: none;
    padding: 0px 7px;
    font-size: 14px;
}

.form-wrapper form a{
    color:rgb(0, 0, 160);
    font-size: 14px;
    margin-top: 10px;
}

.form-wrapper form button{
    height: 35px;
    border-radius: 3px;
    border: none;
    background-color: cornflowerblue;
    outline: none;
    padding: 0px 7px;
    width: 100%;
    transition: 0.2s all ease-in-out;
    margin-top: 25px;
    margin-bottom: 10px;
}

.form-wrapper form button:hover{
    cursor: pointer;
    background-color: rgb(29, 76, 163);
}

.alert{
    width: 90%;
}

.alert-success {
    background-color: lightgreen;
    color: black;
    border-color: green;
    border-radius: 10px;
    text-align: center;
    margin: 0px auto;
    padding: 15px 5px;
    margin-top: 15px;
}