@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	overflow: hidden;
	background: url("../img/bg.jpg")
		no-repeat;
	background-size: cover;
	backdrop-filter: blur(6px);
}

* {
	font-family: "Poppins", sans-serif;
	text-decoration: none;
	font-weight: bold;
	color: #363636;
}

.container {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
}

.content {
	margin: 0 auto;
	width: 720px;
	height: 440px;
	display: flex;
}

.banner {
	height: 100%;
	width: 350px;
	background: rgb(0, 0, 0, 0.4);
	border-radius: 20px 0 0 20px;
}

.banner * {
	margin: 40px;
	color: #ccc;
}

.form {
	height: 100%;
	width: 300px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 0 20px 20px 0;
	position: relative;
}

.form img {
	margin: 25px 0 10px;
	height: 230px;
}

p,
a {
	font-size: small;
}

a {
	color: #1663be;
}
#r {
	position: absolute;
	bottom: 20px;
}

input {
	margin-bottom: 10px;
}

input[type="text"],
input[type="password"] {
	width: 212px;
	height: 32px;
	border: 2px solid #ccc;
	color: #000;
	font-weight: bold;
	border-radius: 20px;
	padding-left: 20px;
}

input:focus {
	outline: 0;
	transition: 0.8s;
	border: 2px solid #646464;
}

::placeholder {
	color: #181818;
	position: absolute;
	top: 7px;
	left: 20px;
}

input:focus ~ input[type="email"]::placeholder {
	color: black;
	position: absolute;
	top: 7px;
	left: 10px;
}

::-ms-reveal {
	filter: invert(100%);
}

button {
	width: 220px;
	height: 38px;
	border: 2px solid #840000;
	background: #840000;
	color: #fff;
	cursor: pointer;
	border-radius: 20px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
		rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

button:active {
	transform: scale(1.05);
	box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}

@media (max-width: 720px) {
	.banner {
		display: none;
	}
	.content {
		display: flex;
		justify-content: center;
	}

	.form {
		border-radius: 20px;
	}
}
