* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Roboto", Arial, sans-serif;
}

body {
	height: 100vh;
	background: linear-gradient(135deg, #223e5f 0%, #2c4f73 50%, #7b8fa1 100%);
	/* background: #ffffff; */
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ✅ Wider & Elegant Card */
.login-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.login-box {
	background: #ffffff;
	width: 420px;
	padding: 45px 40px;
	border-radius: 10px;
	box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.login-box h2 {
	font-size: 30px;
	color: #223e5f;
	font-weight: 700;
	margin-bottom: 5px;
}

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

.input-group {
	text-align: left;
	margin-bottom: 22px;
}

.input-group label {
	font-size: 14px;
	color: #333;
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
}

.input-group input {
	width: 100%;
	padding: 12px;
	border-radius: 6px;
	border: 1px solid #ccc;
	outline: none;
	font-size: 14px;
}

.input-group input:focus {
	border-color: #223e5f;
}


.login-btn {
	width: 100%;
	margin-top: 10px;
	padding: 13px;
	background: #223e5f;
	color: #ffffff;
	border: 2px solid #223e5f;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* span / icon */
.login-btn span {
	color: #ffffff;
	transition: all 0.3s ease;
}

/* 🔥 Hover = New Color */
.login-btn:hover {
	background: linear-gradient(135deg, #3a7bd5, #00d2ff);
	border-color: #00d2ff;
	box-shadow: 0 6px 18px rgba(0, 210, 255, 0.45);
	transform: translateY(-2px);
}

/* icon movement */
.login-btn:hover span {
	transform: translateX(6px);
}

.error-msg {
	color: red;
	font-size: 12px;
	margin-top: 4px;
	display: block;
}

.footer-text {
	margin-top: 25px;
	font-size: 13px;
	color: #999;
}

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

.captcha-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Captcha Text Box */
.captcha-text {
	border: 1px dashed #223e5f;
	border-radius: 6px;
	background: #f2f5f9;
	padding: 0 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	flex-shrink: 0;
}

/* Refresh Box */
.captcha-refresh {
	width: 42px;
	height: 42px;
	border-radius: 6px;
	border: 1px solid #ccc;
	background: #ffffff;
	font-size: 20px;
	cursor: pointer;
	color: #223e5f;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.captcha-refresh:hover {
	transform: rotate(180deg);
	color: #ff1d1d;
	border-color: #ff1d1d;
}

/* Input Field */
#captchaInput {
	flex: 1;
	height: 42px;
	padding: 0 12px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 14px;
	outline: none;
}

#captchaInput:focus {
	border-color: #223e5f;
}

/* ✅ SweetAlert Fix + Small & Cute */
.small-swal {
	width: 320px !important;
	padding: 18px !important;
	border-radius: 12px !important;
}

.small-swal .swal2-title {
	font-size: 18px !important;
	margin-bottom: 8px !important;
}

.small-swal .swal2-html-container {
	font-size: 14px !important;
	color: #555;
}

.small-swal .swal2-confirm {
	background-color: #223e5f !important;
	border-radius: 6px !important;
	padding: 6px 18px !important;
	font-size: 14px !important;
}

.small-swal-cancel-btn {
	background-color: #6c757d !important;
	color: #fff !important;
	border-radius: 6px !important;
	padding: 6px 18px !important;
	font-size: 14px !important;
	border: none !important;
}

.small-swal-cancel-btn:hover {
	background-color: #5a6268 !important;
}
