* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
}

body {
	background-image: repeating-linear-gradient(45deg, rgb(255, 255, 255) 0px, rgb(255, 255, 255) 10px, transparent 10px, transparent 11px), repeating-linear-gradient(135deg, rgb(255, 255, 255) 0px, rgb(255, 255, 255) 10px, transparent 10px, transparent 11px), linear-gradient(90deg, hsl(256, 7%, 84%), hsl(256, 7%, 84%));
}

.login-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-box {
	background: rgba(210, 238, 247, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(210, 238, 247, 0.5);
	padding: 40px;
	width: 100%;
	max-width: 400px;
	position: relative;
}

h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
	color: #000;
}

.textbox {
	margin-bottom: 20px;
	position: relative;
}

.textbox input {
	width: 100%;
	padding: 10px;
	margin: 8px 0;
	font-size: 16px;
	border: none;
	border-bottom: 2px solid #0d6385;
	background: transparent;
}

.textbox input:focus {
	outline: none;
	border-bottom: 2px solid #0d6385;
}

.textbox input::placeholder {
	color: #0d6385;
}

input[type="submit"] {
	width: 100%;
	padding: 10px;
	background-color: #1c98c9;
	border: none;
	border-radius: 4px;
	color: white;
	font-size: 16px;
	cursor: pointer;
}

input[type="submit"]:hover {
	background-color: #166e91;
}

.alert-container {
	margin-top: 20px;
	display: none;
}

.eye-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #0d6385;
}

.alert-danger {
	color: red;
}

.alert-success {
	color: green;
}

.loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.loading-spinner div {
	width: 50px;
	height: 50px;
	border: 6px solid #f3f3f3;
	border-top: 6px solid #0d6385;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.back_home {
	text-align: center;
	margin-top: 10px;
}

.captcha-container {
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.captcha-container label {
	font-size: 16px;
	margin-right: 10px;
}

.captcha-container input {
	width: 120px;
	padding: 10px;
	font-size: 16px;
	border: none;
	border-bottom: 2px solid #0d6385;
	background: transparent;
}

.captcha-container input:focus {
	outline: none;
	border-bottom: 2px solid #0d6385;
}

.captcha-container button {
	background: transparent;
	border: none;
	cursor: pointer;
	color: #0d6385;
	font-size: 18px;
	margin-left: 10px;
}

.captcha-container button:hover {
	color: #166e91;
}