
body {
    background-image: url(../img/wall.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.formulario {
    background: rgba(0, 0, 0, .7);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 30, 0, 4);
    color: white;
}

.form-control {
    background: rgba(0, 0, 0, .4);
    border-style: none;
    transition: 0.5s ease-in;
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    background: none;
    box-shadow: none;
    outline: none;
}

.form-control::placeholder {
    color: white;
}

.ingresar {
    background: #219bae;
    padding: 10px;
    font-size: 16px;
    font-weight: 700!important;
    color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0,1);
    transition: 0.5s ease-in;
}

.ingresar:hover {
    color: white;
}

