/* general */
body {
	background-image: url("images/track.jpg") !important;
	background-size: cover;
	background-origin: border-box; /* Default value */
	background-clip: border-box;   /* Default value */

	display: grid;
	place-items: center;
	height: 100vh;
	margin: 0;
}
/*body {
	font-family: Arial, sans-serif;
	background-color: lightskyblue;
	color: #333;
}*/

.error {
	color: red;
	text-align: center;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
	background-color: #f4f4f4;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 600px;
	border-radius: 8px;
}
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

/* login form */
#login-container,
#register-container {
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

/* register form */
#register-header {
	text-align: center;
	padding: 20px;
	background-color: #00225A;
	color: white;
	border-radius: 8px 8px 0 0;
}

.form-floating fieldset {
	padding: 15px;
	border: 1px solid #ced4da;
	border-radius: .375rem;
}

.form-floating legend {
	font-size: .85rem;
	font-weight: normal;
	margin-bottom: 10px;
	color: #6c757d;
	border: none;
}

.form-floating img {
	width: 6px;
}

