body {
    background-image: url("../img/bg_login.jpg");
    background-size: cover;
    font-family: "Poppins";
    background-position: bottom;
    
}

.logo {
    margin: 0.7rem;
    width: 300px;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.5));
    
}

.form-control {
    box-shadow: 5px 6px 0px rgba(0, 0, 0, 0.25);
    background: transparent;
    border: none;
    height: 50px;
    background: rgba(255, 255, 255, .08);
    color: white;
    border: 1px solid transparent;
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;

}

.form-control:focus {
    color: white;

    background: transparent;
    border: 1px solid rgb(139, 139, 139);
    box-shadow: none;
}

button.form-control {
    background-color: white !important;
    border: none;
    color: black;
}
button.form-control:hover {
    color: black!important;
    font-weight: bolder;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.container {
    color: white;
}

.form-control::-webkit-input-placeholder {
    color: white;
}

.form-control::-moz-placeholder {
    color: white;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: white;
}

.form-control::-ms-input-placeholder {
    color: white;
}

.form-control::placeholder {
    color: white;
}

.field-icon {
    float: right;
    right: 20px;
    margin-top: -33px;
    position: relative;
    z-index: 2;
}