body{
    margin: 0;
    padding: 0;
    background: url('../../img/bg/background-1.jpg') no-repeat center;
    background-size: cover;
    font-family: sans-serif;
}

.loginbox{
    width: 400px;
    height: 500px;
    background: #000;
    opacity: 0.9;
    color: #fff;
    top: 60%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
    border: 2px solid #fff;
    -webkit-border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -o-border-radius: 10px 10px 10px 10px;
    -ms-border-radius: 10px 10px 10px 10px;
    -khtml-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}

.avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.loginbox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}

.loginbox select{
    width: 100%;
    margin-bottom: 20px;
}

.loginbox input[type="text"], input[type="password"], select{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 14px;
    padding: 0 5px;
}

.loginbox select{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #aaa;
    font-size: 14px;
    padding: 0 5px;
}

.loginbox select option{
    text-transform: capitalize;
}

.loginbox select input{
    padding: 10px 5px;
}

.loginbox input[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    background: #fb2525;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.loginbox input[type="submit"]:hover{
    cursor: pointer;
    background: #ffc187;
    color: #000;
}

.loginbox a{
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: darkgrey;
}

.loginbox a:hover{
    color: #ffc107;
}

.loginbox .msgError{
    width: 100%;
    padding: 10px;
    background-color: #993300;
    color:#fff;
    margin: 0 0 10px 0;
    font-size: 12px;
}

/***********************
    MEDIA QUERIES
***********************/
/*  GO FULL WIDTH AT LESS THAN $maxWidth 480 PIXELS  */
@media only screen and (max-width: 480px) {
    .loginbox{
        width: 100%;
        min-height: 300px;
        margin-top:20px;
    }

}
