﻿
.login-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)) center center no-repeat;
}
body {
    background-size: cover;
}
.checkbox {
    color: white;
    text-align: end;
}
.inputs {
    margin-bottom: 10px;
}

.password-input {
    position: relative;
}

    .password-input i {
        position: absolute;
        top: 15px;
        right: 17px;
        cursor: pointer;
        z-index: 10;
        color: #AAAAAA;
        transition: all 0.5s;
    }

        .password-input i:hover {
            color: #000;
        }

.login-form .inputs input {
    padding-left: 10px;
    border: 2px solid #eee;
    border-radius: 5px;
    transition: all 4s;
}
