body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	background: linear-gradient(180deg, whitesmoke 1%, #c1cdd1, #888, #555555);
	height: 100vh;
	overflow: hidden;
    /*backdrop-filter: blur(20px) saturate(120%) contrast(20%);*/
}

#home {
	font-weight: normal;
}

#login {
	font-weight: bolder;
}

.login__panel {
	background-color: #f8f8f8;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 370px;
	height: 400px;

	border-radius: 10px;
	padding: 10px 0px 40px 0px;
	text-align: center;
}

.login__panel h1 {
	color: #445069;
	text-align: center;
	padding: 0 0 30px 0;
	border-bottom: 1px solid silver;
}

.login__panel form {
	padding: 0 40px;
	box-sizing: border-box;
}

form .text__field {
	position: relative;
	border-bottom: 2px solid #adadad;
	margin: 30px 0;
}

.text__field input{
	width: 100%;
	padding: 0 5px;
	height: 40px;
	font-size: 16px;
	border: none;
	background: none;
	outline: none;
}

.text__field label {
	position: absolute;
	top: 50%;
	left: 5px;
	color: #adadad;
	transform: translateY(-50%);
	font-size: 16px;
	pointer-events: none;
	transition: .5s;
}

.text__field span::before {
	content: '';
	position: absolute;
	top: 40px;
	width: 0%;
	left: 0;
	height: 2px;
	background: #5B9A8B;
	transition: .5s;
}

.text__field input:focus ~ label,
.text__field input:valid ~ label {
	top: -5px;
	color: #5B9A8B;
}

.text__field input:focus ~ span::before,
.text__field input:valid ~ span::before {
	width: 100%;
}

input[ type="submit" ] {
	width: 40%;
	height: 50px;
	border: 1px solid;
	background: #445069;
	border-radius: 25px;
	font-size: 18px;
	color: white;
	font-weight: 700;
	cursor: pointer;
	outline: none;
}

input[ type="submit" ]:hover {
	border-color: #fdc984;
	transition: 0.5s;
}

.signup {
	margin-top: 70px;
	color: #555555;
}

.signup span {
	padding-right: 10px;
}

.signup button1 {
	color: #5B9A8B;
	cursor: pointer;
}


@media (max-width: 600px) {
    .login__panel {
        height: 50%;
        width: 75%;
        padding: 0 0;
    }

    input[ type="submit" ] {
        height: 35px;
        font-size: 14px;
    }

    .signup {
        margin-top: 25px;
        font-size: 15px;
    }
}