body {
	background-color: black;
	color: white;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.container_top {
	width: 300px;
	margin: 0 auto;
	padding-top: 100px;
	text-align: center;
}
.container1 {
	width: 300px;
	margin: 0 auto;
	padding-top: 10px;
}

form {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 10px;
}

label {
	display: block;
	margin-bottom: 10px;
}

.imgbottom {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
}
.imgbottom img {
	height: 30px;
	width: auto;
  }

input[type="text"],

input[type="password"] {
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 20px;
}

input[type="submit"] {
	width: 100%;
	padding: 10px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

input[type="submit"]:hover {
	background-color: #45a049;
}

.error-message {
	color: red;
	margin-top: 10px;
}

.button {
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	color: #ffffff;
	background-color: #007BFF;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}

.button:hover {
	background-color: #0056b3;
}

