/*body {
	background-color: #f2f2f2;
}

.login-container {
	width: 400px;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: #585858;
}

form {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

label {
	font-size: 1.2rem;
	margin-bottom: 5px;
	text-align: left;
	color: #585858;
}

input[type="text"],
input[type="password"],
input[type="email"] {
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	border: none;
	background-color: #f5f5f5;
}

input[type="submit"] {
	background-color: #4CAF50;
	color: #fff;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

a {
	color: #4CAF50;
	text-decoration: none;
}

a:hover {
	color: #4CAF50;
  	text-decoration: underline;
}

#confirmation {
  color: #0073e6;
  font-size: 1.2rem;
  margin-top: 10px;
}*/

body {
    background-color: #f2f2f2;
}

.error {
    width: max-content;
    margin-top: .25rem;
    color: var(--bs-form-invalid-color);
}

.form-floating>.form-control:not(:placeholder-shown)~label::after {
    background-color: transparent;
}

.back-link {
    width: max-content
}