/* ************************************************************************** 
Filename    : login.css
              ----------
Author      : Patrick Meijer
Versiondate : 2023-10-14 11:30
Includes    : -  
Purpose     : This is the css belonging to the login.php
==================================================================================== */
@font-face { 
 font-family: 'Titillium Web';
 src: url(../../../Common/Font_Titilium/TitilliumWeb-Regular.ttf);
} 

/* styling of the page background */
html, body {
	width:100%;
	height:100%;
	overflow: hidden;
}
body {
    margin: 0;
    padding: 0;
	font-family: 'Titillium Web';
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
#background{
background-image: url('../../../Common/Img/background.jpg');
background-position: 50% 50%;
background-size: cover;
opacity:0.55;
width:100vw;
height:99.99vh;
left: 0px;
position: fixed;
}
#background::-webkit-scrollbar {display: none;}

/* styling of the login box */
.box {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 300px;
	padding: 20px;
	background: rgba(0,0,0,.5);
	box-sizing: border-box;
	box-shadow: 0 15px 25px rgba(0,0,0,.3);
   border-radius: 17px;
}
/* styling of the login box inputs */
.box .inputBox {
	position: relative;
}
.box .inputBox input {
	width: 100%;
	padding: 10px 0;
	font-size: 0.7rem;
	color: #FFF;
	letter-spacing: 1px;
	margin-bottom: 30px;
	border: none;
	border-bottom: 1px solid #FFF;
	outline: none;
	background: transparent;
}
.box .inputBox label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
	font-size: 0.8rem;
	color: #FFF;
	pointer-events: none;
	transition: .5s;
	animation: LabelOnLoad 1s forwards 0s ease;
}
@keyframes LabelOnLoad{
    0%{
        transform: rotate(0) translateY(-19px);
        opacity: 0;
        }
    100%{
        transform: rotate(0) translateY(0);
        opacity: 1;
        }
}
.box .inputBox input:focus ~ label, 
.box .inputBox input:valid ~ label {
	top: -19px;
	left:0;
	color: #03A9F4;
	font-size: 12px;
}

@media(max-width: 720px){
	.box {
		width: 80%;
	}
}
/* styling the Login button */
button#Login {
  padding: 3px 5px;
  height: auto;
  position: relative;
  float: right;
  font-size: 0.8rem;
  font-weight: bold;
  color: #527881;
  cursor: pointer;
  text-shadow: 0 1px #e3f1f1;
  background: #cde5ef;
  opacity: 0.7;
  border: 2px solid;
  border-color: #b4ccce #b3c0c8 #9eb9c2;
  border-radius: 6px;
  outline: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-image: -webkit-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: -moz-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: -o-linear-gradient(top, #edf5f8, #cde5ef);
  background-image: linear-gradient(to bottom, #edf5f8, #cde5ef);
  -webkit-box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
}
