/*style.css*/
body {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: sans-serif;
	line-height: 1.5;
	min-height: 100vh;
	background-image: linear-gradient(rgba(19, 21, 25, 0.5),rgba(19, 21, 25, 0.5)), url("/static/images/bg.jpg");
	flex-direction: column;
	margin: 0;
}

.main {
	background-color: rgba(27, 31, 34, 0.85);
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	padding: 10px 20px;
	transition: transform 0.2s;
	width: 500px;
	text-align: center;
}

.center {
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
  }

h1 {
	color: #ffffff;
}

h3 {
	color: #ffffff;
}

p {
	color: #ffffff;
}

a {
	color: #87CEEB
}

a:visited {
	color: #87CEEB
}

label {
	display: block;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 5px;
	text-align: left;
	color: #555;
	font-weight: bold;
}


input {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 5px;
}

label {
	color: #ffffff;
}

button {
	padding: 15px;
	border-radius: 10px;
	margin-top: 15px;
	margin-bottom: 15px;
	border: none;
	color: white;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.075);
	width: 100%;
	font-size: 16px;
}

.wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
