body {
    background-image: url(../img/Project_16-09.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
    background-position-y: top;
    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;
    background: rgba( 255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 7.0px);
    -webkit-backdrop-filter: blur( 7.0px);
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18);
    position: relative;
}

.form__profile {
    position: absolute;
    top: -60px;
    left: 115px;
}

.back__glass {
    position: absolute;
    margin-top: 1px;
    margin-left: 1px;
    width: 118px;
    height: 58px;
    border-radius: 118px 118px 0 0;
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    border: 1px solid rgba( 255, 255, 255, 0.18);
    box-sizing: border-box;
    z-index: -1;
}

.back__glass::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -60px;
    left: 0;
    right: 0;
    background: white;
    border-radius: 50%;
}

.back__glass::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: -60px;
    left: 0;
    right: 0;
    border-radius: 50%;
    background: rgba( 255, 255, 255, 0.15);
    backdrop-filter: blur( 7.0px);
    -webkit-backdrop-filter: blur( 7.0px);
}

.form__img {
    font-size: 120px;
    color: #3c3a9b;
}

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

.form__label, .form__input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    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: 0;
    padding-bottom: 10px;
    border: none;
    background: none;
    border-bottom: 1px solid #3c3a9b;
    transition: all .2s ease;
}

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

.form__button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 8px;
    background: #3c3a9b15;
    box-shadow: 0 0px 5px rgba( 31, 38, 135, 0.37);
    border: 1px solid #3c3a9b;
    color: #3c3a9b;
    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;
}

.vec__img {
    color: #3c3a9b;
    text-decoration: none;
    position: fixed;
    right: 0;
    bottom: 0;
    transition: all .3s ease;
}

.vec__img:hover {
    color: orange;
}