body {
    margin: 0;
    padding: 0;
    background: url('tman.jpg') no-repeat;
    background-size: cover;
    overflow: hidden;
}

.log_in{
	height: 450px;
    width: 400px;
    background: #ffe0717a;
    left: 50%;
    top: 50%;
    position: absolute;
    padding: 10px 45px;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    border-radius: 25px;
    transform-box: fill-box;
    transition: 2s;
}
.form{
	margin-top: -30px;
}
.user{
	height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    top: calc(-100px/2);
    left: calc(50% - 50px);
}
h1{
	text-align: center;
    color: #ff02968c;
    margin: 55px;
    padding: 10px 0 0px;
    font-size: 30px;
}
.log_in p{
	 margin: 0;
    padding: 0;
    font-weight: bold;
    color: #1d686a;
    font-size: 20px;
    padding-bottom: 5px;
}
.log_in input{
	width: 100%;
	margin-bottom:30px;
 	
}
.log_in input[type="text"],
.log_in input[type="password"]
{
	background: transparent;
    border: none;
    height: 15px;
    outline: none;
    border-bottom: 1px solid #000;
    font-size: 15px;
    color: #3d005b;
        padding: 0px 0px 10px;
}
::placeholder
{
	color: #828282;

}
.log_in input[type="submit"]
{
	border: none;
    outline: none;
    background: #ff59cc63;
    height: 45px;
    padding-left: 40%;
    font-size: 25px;
    border-radius: 25px;
    cursor: pointer;
    color: white;
}
.log_in input[type="submit"]:hover{
	background: #ffffffab;
    color: #ff6597;
    transition:0.3s;
}
.log_in a{
	text-decoration: none;
    font-size: 20px;
    color: #1d686a;
    
}
.log_in a:hover{
	color: #885c09;
    font-size: 22px;
    transition: 0.5s;
}