@charset "UTF-8";

body {
	margin: 0;
	padding: 0;
	font-family: "Meiryo", sans-serif;
	background-color: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.login-wrapper {
	background-color: #ffffff;
	border: 3px solid #555;
	border-radius: 10px;
	padding: 40px;
	width: 650px;
	box-sizing: border-box;
	text-align: center;
}

.logo {
	width: 250px;
	margin-bottom: 10px;
	height: 100px;
	object-fit: cover;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
	width: 250px;
	padding: 10px;
	font-size: 14px;
	border: 2px solid #555;
	border-radius: 6px;
}

.password-wrapper {
	position: relative;
}

.password-wrapper .eye-icon {
	right: 13%;
	position: absolute;
	top: 45%;
	cursor: pointer;
	font-size: 16px;
}

.login-button {
	background-color: #1d4f91;
	color: #fff;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	width: 270px;
	padding: 12px 0;
	cursor: pointer;
}

.login-button:hover {
	background-color: #163f73;
}

.toggleIcon {
	width: 50%;
	object-fit: cover;
}

::-ms-reveal {
	display: none;
}

.hidden {
	display: none;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

	.modal {
		background: #fff;
		padding: 20px 30px;
		border-radius: 10px;
		text-align: center;

	}

	.modal p {
		font-size: 22px;
	}

	.close-btn {
		margin-top: 20px;
		padding: 12px 22px;
		font-size: 14px;
		background-color: #3498db;
		color: white;
		border: none;
		border-radius: 5px;
		cursor: pointer;
	}