

		.content{
			background: white;
			width: 50%;
			padding: 40px;
			margin: 100px auto;
			font-family: calibri;
			border-radius: 10px;
		}

		.logout{
            display: block;
            background: #6683de;
            color: #fff;
            outline: none;
            border: none;
            padding: 7px 15px;
            text-decoration: none;
            border-radius: 20px;
            font-size: 17px;
            width: 320px;
            height: 60px;
            font-family: calibri;
            cursor: pointer;
            }

			.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-size: 13px;
    color: #686868;
}
.link {
   
    font-size: 13px;
    color: #6683de;
    text-decoration: none;
}
.active, .link:hover{
  border-bottom: 1px solid #6683de;

    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;
padding-left: 4px;
  border-bottom: 2px solid #6683de;
outline: none;
}
.input-data input:focus ~ label,
.input-data input:valid ~ label{
transform: translateY(-34px);
font-size: 15px;
color: #6683de;
padding-left: 4px;
}
.wrapper .input-data label{
  position: absolute;
  bottom: 10px;
  left: 0;
padding-left: 4px;
  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: #4158d0;
  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);
}