	body{
			background-image:url(../img/login.png?v=1.0);
			background-size: cover;
			background-attachment: fixed;
		}

		.content{
			background: white;
			width: 50%;
			padding: 40px;
			margin: 100px auto;
			font-family: calibri;
			border-radius: 10px;
		}

		p{
			font-size: 25px;
			color: black;
		}
		.logout{
            display: block;
            background: #496a25;
            color: #fff;
            outline: none;
            border: none;
            padding: 7px 15px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 17px;
            width: 320px;
            height: 60px;
            font-family: calibri;
transition-duration: 0.45s;
            cursor: pointer;
            }
.logout:hover{
background-color: #335310;
border-radius: 10px;
transform: scale(1.07);

}
			.login-form {
    position: relative;
    width: 400px;
    box-shadow: 0 0 20px 5px rgb(12 49 78 / 5%);
    border-radius: 15px;
    padding: 40px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}
.neturi {
    font-family: "Open Sans",sans-serif;
    font-size: 13px;
    color: #686868;
}
.link {
    font-family: "Open Sans",sans-serif;
    font-size: 13px;
    color: #496a25;
    text-decoration: none;
}
.active, .link:hover{
  border-bottom: 1px solid #335310;
color:#335310;
    font-family: "Open Sans",sans-serif;
    font-size: 13px;

    
}



.wrapper{
  width: auto;
  padding-bottom:5px; 
  padding-top: 20px;

}
.wrapper .input-data{
  height: 40px;
  width: 100%;
  position: relative;
}
.wrapper .input-data input{
  height: 100%;
  width: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid silver;
}
.input-data input:focus ~ label,
.input-data input:valid ~ label{
  transform: translateY(-20px);
  font-size: 15px;
  color: #496a25;
}
.wrapper .input-data label{
  position: absolute;
  bottom: 10px;
  left: 0;
  color: grey;
  pointer-events: none;
  transition: all 0.4s ease;
}
.input-data .underline{
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
}
.input-data .underline:before{
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #496a25;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before{
  transform: scaleX(1);
}