* {
	user-select: none;
}

body {
	font-family: sans-serif;
	width: 100%;
	height: 100dvh;
	min-height: 740px;
	
	display: flex;
	justify-content: center;
	
	background-image: url(/assets/img/background.jpg);
	background-size: cover;
	background-position: center;
	
	padding: 1rem 0;
}

button {
	cursor: pointer;
}

#content {
	width: 100%;
	max-width: 512px;
	
	aspect-ratio: 1125 / 2478;
	background-image: url(/assets/img/content.jpg);
	background-size: cover;
	background-position: center;
	border-radius: 1.5rem;
	
	padding: 1.5rem;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
}

#banner {
	height: 6rem;
	aspect-ratio: 693 / 222;
	background-image: url(/assets/img/banner.png);
	background-size: contain;
	background-repeat: no-repeat;
}

#login-form {
	background-color: white;
	border-radius: 1.5rem;
	
	padding: 1.25rem;
	
	filter: drop-shadow(1px 1px 0.15rem rgba(0, 0, 0, 0.1));
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#title {
	text-align: center;
	font-weight: bold;
	margin-bottom: 1rem;
}

#form-content {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	
	padding-bottom: 1rem;
}

.form-field {
	border: 0.15rem solid #dcdfe5;
	border-radius: 0.75rem;
	width: 100%;
	padding: 0.75rem;
	
	display: flex;
}

.form-field input {
	flex: 1;
	background-color: none;
	border: none;
}

.form-field input:focus {
	outline: none;
}

.icon {
	width: 7%;
	aspect-ratio: 1 / 1;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
}

.user-icon {
	background-image: url(/assets/img/user_icon.png);
}

.password-icon {
	background-image: url(/assets/img/password_icon.png);
}

.hide-icon {
	background-image: url(/assets/img/hide_icon.png);
}

.show-icon {
	background-image: url(/assets/img/show_icon.png);
}

form input[name="captcha"] {
	min-width: 0;
}

#captcha-button {
	width: 150px;
	min-width: 150px;
	height: 50px;
	border: none;
	background-color: transparent;
	outline: 0.15rem solid #dcdfe5;
}

form button[type="submit"] {
	width: 100%;
	aspect-ratio: 945 / 132;
	border: none;
	background-image: url(/assets/img/login.png);
	background-size: contain;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
}

