body {
    background-image: url(../img/background_login.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.contenedor {
    width: 100%;
    position: relative;
}

main {
    width: 350px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 200px;
    padding: 20px;
}

figure {
    width: 150px;
    position: absolute;
    top: -40px;
    right: 120px
}

figure img {
    width: 100%;
}

.form {
    padding-top: 60px;
    text-align: center;
    color: #77777790;
}

.form__label, .form__input {
    display: block;
    width: 100%;
    margin-top: 30px;
    text-align: left;
}

.form__icon_user, .form__icon_pass {
    margin-right: 10px;
}

.form__input {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
    border: 0;
    border-radius: 20px;
    background: #bebebe;
    transition: all .2s ease;
    color: black;
}

.form__input:focus {
    box-shadow: 0 8px 6px -6px #33333380;
}

.form__button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 55px;
    margin-top: 30px;
    border-radius: 20px;
    background: #008037;
    box-shadow: 0 0px 5px rgba( 31, 38, 135, 0.37);
    border: none;
    color: white;
    transition: all .3s ease;
}

.form__button:hover {
    background: #3c3a9b;
    color: white;
}

.form__icon_next {
    margin-left: 10px;
}

.mensajes {
    display: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    color: #333;
}

.error {
    border: 2px solid #dc3545;
    background: #dc354530;
}

.exito {
    border: 2px solid #28a745;
    background: #28a74530;
}