body {
	font-family: Arial, sans-serif;
	background: #f4f6f8;
}

.wait {
	cursor: wait;
	opacity: 0.6;
}

.container {
	width: 500px;
	margin: 80px auto;
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
	text-align: center;
	margin-bottom: 20px;
}

input,
select,
textarea {
	width: 100%;
	margin-bottom: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0 12px;

}
textarea {
	padding: 12px 14px;
	line-height: 1.5;
}


button {
    border-radius: 6px;
	width: 100%;
	padding: 12px;
	background: #4f46e5;
	color: white;
	border: none;
	cursor: pointer;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'>\<path d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/>\</svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	padding-right: 40px;
}

button:hover {
	background: #4338ca;
}

.hint {
	text-align: center;
	color: #666;
	font-size: 13px;
}

input,
select,
button {
    box-sizing: border-box;
    height: 44px;
    font-size: 14px;
}
textarea {
    box-sizing: border-box;
    height: 150px;
    font-size: 14px;
    resize: none;
}

.field {
	margin-top: 7px;
}

.hidden {
	display: none;
}

.paste-area {
	border: 2px dashed #d1d5db;
	border-radius: 8px;
	padding: 18px;
	text-align: center;
	cursor: pointer;
	color: #6b7280;
	position: relative;
}

.paste-area img {
	max-width: 100%;
	display: none;
	margin-top: 10px;
	border-radius: 6px;
}

.paste-area.active {
	border-color: #4f46e5;
	background: #eef2ff;
}

.pin-container {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 40px;
}

.code-input {
	width: 50px !important;
	height: 50px !important;
	font-size: 24px;
	text-align: center;
	border-radius: 8px;
	border: 2px solid #999;
}

.code-input:focus {
	border-color: #007bff;
	outline: none;
}

.pin-input::placeholder {
	color: #bbb;
	font-size: 24px;
	text-align: center;
}

.code-input.error {
	border-color: #e74c3c;
	animation: shake 0.25s;
}

@keyframes shake {
	0% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-6px);
	}
	50% {
		transform: translateX(6px);
	}
	75% {
		transform: translateX(-4px);
	}
	100% {
		transform: translateX(0);
	}
}

.monitor-switch {
	display: flex;
	gap: 14px;
	margin-bottom: 24px;
}

.switch-card {
	flex: 1;
	cursor: pointer;
}

.switch-card input {
	display: none;
}

.switch-card span {
	display: block;
	text-align: center;
	padding: 14px;
	border-radius: 10px;
	border: 1px solid #d1d5db;
	background: #f9fafb;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.switch-card span:hover {
	border-color: #4f46e5;
}

.switch-card input:checked + span {
	background: #4f46e5;
	color: #fff;
	border-color: #4f46e5;
	box-shadow: 0 6px 18px rgba(79,70,229,.25);
}
