body
{
    margin: 0px;
    padding: 0px;
    background: url("../img/l.jpg");
    background-repeat: no-repeat;
    background-size: 100% 120%  ;
    background-position: top;
    background-attachment: fixed;
    webkit-background-size:cover;
    background-size:cover;
    font-family: Tahoma,sans-serif;
}
.form-area
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    height: 430px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 15px;
}
.logo-box {
    margin: 15px auto;
    width: 100%;
    height: 70px;
}
/*img
{
    margin: 8px 0;
    padding: 0px 83px 15px;
}*/
.logo-box .logo-img {
    width: 100%;
    height: 100%;
}
.form-area p
{
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    color: #ffffff;
    font-size: 14px;
}
.form-area input[type=text] {
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

.form-area input[type=text]:focus {
    width: 100%;
}
.form-area input,select
{
    margin-bottom: 20px;
    width: 100%;
}
.form-area input[type=password],
.form-area input[type=email]
{
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    outline: none;
    height: 30px;
    color: #ffffff;
    display: 16px;
    border-radius: 5px;
    padding: 5px 5px;
    margin: 8px 0;
}
::placeholder
{
    color: #ffffff;
    padding: 10px 0;
}
.form-area select
{
    margin-top: 20px;
    padding: 10px 0;
}
.form-area input[type=submit]
{
    border: none;
    height: 35px;
    outline: none;
    font-size: 15px;
    background-color: #56A1FC;
    cursor: pointer;
    color: #ffffff;
    border-radius: 5px;
    padding: 5px 5px;
    margin: 7px -1px;
    text-align: center;
    width: 330px;
}
.form-area input[type=submit]:hover
{
    background-color: #3071A9;
    color: #ffffff;
}
.form-area a
{
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 3;
    padding: 2px;
}