.signin-form {
	max-width: 400px;
	margin: 50px auto;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.signin-form h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #333;
}

.signin-form label {
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: 1.1em;
}

.signin-form input[type="text"],
.signin-form input[type="password"] {
	width: 50%;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	height: 1.5em;
}

.signin-form button {
	width: 60%;
	padding: 10px;
	background-color: #a83232;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.signin-form button:hover {
	background-color: #d63b3b;
}

.signin-form .extra-links {
	text-align: center;
	margin-top: 20px;
}

.signin-form .extra-links a {
	color: #a83232;
	text-decoration: none;
	font-size: 1.2em;
}
.error-message {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	padding: 10px;
	border-radius: 5px;
	margin: 5px auto 10px auto;
}


.signin-form .extra-links a:hover {
	text-decoration: underline;
}

/* Show Password Checkbox Styling */
.show-password {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
	justify-content: center;
}

.show-password input[type="checkbox"] {
    margin-right: 8px; /* Adjust the space between checkbox and label */
    vertical-align: middle; /* Ensure the checkbox is vertically aligned */
}

.show-password label {
    margin: 0; /* Remove any additional margins from the label */
}
