.login-page {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.login-container {
	background: white;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 450px;
}

.logo-header {
	padding: 0 12px;
	text-align: center;
	/* position: relative; */
}

.logo-header .logo {
	font-size: 28px;
	font-weight: bold;
	padding: 10px 40px;
	display: inline-block;
	border-radius: 0 0 50px 50px;
	color: #ffffff;
	background-color: #e31e24;
	/* position: absolute; */
	/* top: 0; */
	/* left: 50%; */
	/* transform: translate(-50%, -50%); */
}

.logo-header .logo img {
	max-width: 120px;
}

.form-content {
	padding: 30px;
}

.form-title {
	color: #e31e24;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 8px;
	text-align: center;
	text-transform: uppercase;
}

.form-subtitle {
	color: #666;
	font-size: 14px;
	text-align: center;
	margin-bottom: 30px;
}

.input-group {
	margin-bottom: 20px;
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px 15px;
	transition: border-color 0.3s;
}

.input-wrapper:focus-within {
	border-color: #e31e24;
}

.input-icon {
	color: #e31e24;
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.form-input {
	border: none;
	outline: none;
	width: 100%;
	font-size: 15px;
	color: #333;
}

.form-input::placeholder {
	color: #999;
}

.otp-link {
	color: #e31e24;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin-left: auto;
	white-space: nowrap;
	transition: opacity 0.3s;
}

.otp-link:hover {
	opacity: 0.8;
}

.login-button {
	width: 100%;
	background: linear-gradient(135deg, #e31e24 0%, #ff4444 100%);
	color: white;
	border: none;
	text-transform: uppercase;
	border-radius: 6px;
	padding: 14px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	margin-bottom: 20px;
}

.login-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.login-button:active {
	transform: translateY(0);
}

.register-link {
	text-align: center;
	font-size: 14px;
	color: #666;
}

.register-link a {
	color: #e31e24;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s;
}

.register-link a:hover {
	opacity: 0.8;
}

.footer {
	background: #e31e24;
	padding: 15px;
	text-align: center;
}

.footer-text {
	color: white;
	font-size: 14px;
	font-weight: 500;
}

.icon-eye {
	margin-right: 0;
	cursor: pointer;
}

.is-invalid {
	border: 1.5px solid #ff4d4f;
	box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.15);
}

.text-danger {
	color: #ff4d4f;
	margin-top: 3px;
	display: block;
}

@media (max-width: 480px) {
	.form-content {
		padding: 25px 20px;
	}

	.form-title {
		font-size: 20px;
	}
}