@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Poppins&display=swap&family=Lexend:wght@300&display=swap');

* {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-size: cover;
	background-position: center;
	transition: 0.5s;
}

.container {
	display: flex;
	height: 100vh;
	align-items: center;
	justify-content: flex-end;
	margin-right: 300px;
	overflow: hidden;
}

.panel {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	width: 400px;
	height: 600px;
	display: flex;
	flex-direction: column;
}

.panel h2 {
	margin-top: 30px;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 30px;
}


.panel input[type="text"],
.panel input[type="password"] {
	width: calc(100% - 5px);
	padding: 10px;
	margin-bottom: 10px;
	border: none;
	border-bottom: 1px solid #ccc;
	outline: none;
	box-sizing: border-box;
	background-color: #eee;
}

.panel input[type="text"]::placeholder,
.panel input[type="password"]::placeholder {
	color: #bbb;
}

.panel input[type="text"]:focus,
.panel input[type="password"]:focus {
	border-bottom-color: #378ef0;
}


.panel button {
	width: 90px;
	padding: 10px;
	background-color: #0070e0;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	margin-left: 150px;
	margin-top: 25px;
	font-weight: bold;
	color: #fff;
}

.panel .link {
	margin-top: 5px;
	margin-left: 10px;
	color: #1473e6;
	text-decoration: none;
}

.logo {
	display: flex;
	justify-content: center;
}

.logo img {
	width: 200px;
}