.container {
	color: #6c7278;
	border-radius: 10px;
	margin: auto auto;
	margin-top: 20px;
	background-color: #2c3e50;
	position: relative;
	z-index: 1;
	padding: 20px;
	max-width: 900px;
	width: 90%;
}

.logo-container-choise {
	width: 100%;
	text-align: center;
}

.logo-choise {
	max-width: 150px;
	width: 35%;
	margin: auto auto;
	margin-bottom: 20px;
}

h1 {
	text-align: center;
	margin-bottom: 15px;
	color: white;
}
.form-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem;
	background-color: #f5f5f5;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	color: #253147;
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.required {
	color: #e9913a;
	font-weight: bold;
}

.form-control {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
}

.form-actions {
	text-align: center;
}

.btn-submit {
	padding: 0.75rem 2rem;
	width: 100%;
	background-color: #e9913a;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	cursor: pointer;
	transition: 0.6s;
}

.btn-submit:hover {
	background-color: #253147;
}

.already {
	margin: auto auto;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	color: white;
	gap: 8px;
	margin-bottom: 20px;
}

#change {
	color: white;
	display: block;
	text-align: center;
	width: fit-content;
	transition: 0.7s;
}
#change:hover {
	color: #e9913a;
}

.remember-me {
	display: flex;
	color: red;
	align-items: center;
	justify-content: space-between;
}

.checkbox-group {
	display: flex;
	align-items: center;
}

#rememberlabel {
	margin-bottom: 0;
	margin-left: 10px;
}
.happy {
	text-align: center;
	color: white;
	margin-bottom: 20px;
}
#changeCreate {
	margin-top: 20px;
	color: #4285f4;
	transition: 0.7s;
}

#changeCreate:hover {
	color: #e9913a;
}

#change-contain {
	margin-top: 20px;
}

#mdpForget {
	color: #4285f4;
	margin-left: auto;
	text-decoration: none;
}

#mdpForget:hover {
	color: #e9913a;
}

@media (max-width: 600px) {
	.remember-me {
		flex-direction: column; /* Stack checkbox-group and link vertically */
		align-items: flex-start; /* Align all elements to the left */
	}

	#mdpForget {
		margin-left: 0; /* Remove right alignment */
		margin-top: 10px; /* Space between checkbox-group and link */
	}

	.checkbox-group {
		display: flex;
		align-items: center; /* Ensure checkbox and label stay on the same line */
	}
}
