@charset "utf-8";

/* CSS Document */

/* Stilizare generala */
body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	font-size: 14px;
	/* [disabled]background-color: #F0F0F0; */
}

.header {
	background-color: white;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0;
	padding-right: 30;
	padding-bottom: 0;
	padding-left: 30px;
}
.logo {
	height: 45px;
	width: auto;
}

input[type="submit"] {
	background-color: #4CAF50;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	padding-top: 12px;
	padding-right: 20px;
	padding-bottom: 12px;
	padding-left: 20px;
	font-size: 16px;
	margin-top: 20px;
}

input[type="submit"]:hover {
	background-color: #59B75E;
}


/* Stilizare mesaje de eroare */
.error-message {
  background-color: #f44336;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
  margin-top: 20px;
  display: none;
}

.error-message.show {
  display: block;
}
