
.login-box {
    padding-top: 0;
    /*padding-right: 40px;
    padding-bottom: 0;
    padding-left: 40px;*/
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    /*box-shadow: 0 15px 25px rgba(0,0,0,.6);*/
    height: 350px;
}

.login-box h2 {
    margin-top: -32px;
    padding-bottom: 10px;
    padding-top: 20px;
    color: #fff;
    text-align: center;
}

.login-box .user-box {
    position: relative;
    height: 60px;
    padding-right: 40px;
    padding-left: 40px;
}

.login-box .user-box input {
    width: 100%;
    padding-top: 20px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}
.login-box .user-box label {
    padding-right: 40px;
    padding-left: 40px;
    position: absolute;
    top:0;
    left: 0;
    font-size: 16px;
    color: rgba(165, 161, 159,100);
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: rgba(255, 140, 0,100);
    font-size: 12px;
}

.login-box form #authorization {
    border-radius: 5px;
    border-color: rgb(31, 21, 14);
    border-style: solid;
    width: 75px;
    height: 38px;
    display: inline-block;
    position: relative;
    background: rgb(44, 30, 20);
    color: rgba(57, 255, 0,100);
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 20px;
    letter-spacing: 2px;
}

.login-box #authorization:hover {
    border-color: rgba(57, 255, 0,100);
    background: rgba(57, 255, 0,100);
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(57, 255, 0,100),
    0 0 10px rgba(57, 255, 0,100),
    0 0 20px rgba(57, 255, 0,100),
    0 0 30px rgba(57, 255, 0,100);
}

.login-box form #registration {
    border-radius: 5px;
    border-color: rgb(31, 21, 14);
    border-style: solid;
    margin-left: 12px;
    width: 140px;
    height: 38px;
    display: inline-block;
    position: relative;
    background: rgb(44, 30, 20);
    color: rgb(0, 184, 255);
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 20px;
    letter-spacing: 2px;
}

.login-box #registration:hover {
    border-color:rgb(0, 184, 255);
    background: rgb(0, 184, 255);
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0, 184, 255),
    0 0 10px rgb(0, 184, 255),
    0 0 20px rgb(0, 184, 255),
    0 0 30px rgb(0, 184, 255);
}

.login-box form #lost_access {
    border-radius: 5px;
    border-color: rgb(31, 21, 14);
    border-style: solid;
    width: 235px;
    height: 38px;
    display: inline-block;
    position: relative;
    background: rgb(44, 30, 20);
    color: rgb(255, 0, 0);
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.login-box #lost_access:hover {
    border-color:rgb(255, 0, 0);
    background: rgb(255, 0, 0);
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(255, 0, 0),
    0 0 5px rgb(255, 0, 0),
    0 0 10px rgb(255, 0, 0),
    0 0 15px rgb(255, 0, 0);
}
