*{
    margin: 0;
    padding: 0;
}
body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url('lib/img/1.jpg');
}
.container{
    width: 100%;
    height: 100%;
    position: relative;
}
#loginFormBtn{
    visibility: hidden;
}
.loginBtn , .loginFormBtn{
    z-index: 1;
    width: 400px;
    height: 200px;
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, 0.247);
}
.loginBtn p , .loginFormBtn p{
    top: 65%;
    left: 50%;
    font-size: 40px;
    position: absolute;
    font-weight: bolder;
    transform: translate(-50%,-50%);
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.192) , 2px 2px 3px rgba(0, 0, 0, 0.178), 3px 3px 4px rgba(0, 0, 0, 0.178);
}
#user{
    top: 35%;
}
form{
    width: 400px;    
    height: 0px;
    max-width: 400px;
    visibility: hidden;
}
.loginBtn , form{
    top: 50%;
    left: 50%;
    position: absolute;
    border-radius: 5px;
    transform: translate(-50%,-50%);
    background-color: rgba(0, 0, 0, 0.411);
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.726) , 0px 0px 1px 5px rgba(255, 255, 255, 0.596);
}
.loginBtn:hover{
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.795);    
    transition: background-color 500ms linear 0s;
}

.text{
    text-shadow: 1px 1px 2px white;
    transition: text-shadow 200ms linear 0s;
}
.show{
    height: 500px;
    visibility: visible;
    transition: height 1s linear 0s;
}
.showLoginIcon{
    visibility: visible !important;
}
.formBody{
    padding: 10px;
    text-align: center;
    visibility: hidden;
}
.formBody p:first-child{
    margin-top: 0px !important;
}
.formBody p{
    margin: 15px;
}
.formBody p a{
    color: #cccccc;
    font-weight: bold;
    font-size: small;
    letter-spacing: 3px;
    text-decoration: none;
    font-family: sans-serif;
    text-shadow: 1px 1px 2px black;
}
.formBody p a:hover{
    color: white;
}
.formBody p input{
    width: 80%;
    outline: none;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: medium;
    border-radius: 5px;
    letter-spacing: 3px;
    background-color: transparent;
    text-shadow: 1px 1px 2px black;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.459);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.formBody p input::placeholder{
    color: #cccccc;
}
.formBody p input:hover{
    background-color: rgba(0, 0, 0, 0.336);    
    transition: background-color 500ms linear 0s;
}