.clsc-box {
	box-sizing: border-box;
	width: 100%;
	margin: 1.5rem auto;
	padding: 2rem;
	border: 1px solid;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.clsc-box *,
.clsc-box *::before,
.clsc-box *::after {
	box-sizing: border-box;
}

.clsc-title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1.2;
}

.clsc-intro {
	margin-bottom: 1.25rem;
}

.clsc-form {
	margin: 0;
}

.clsc-field,
.clsc-remember,
.clsc-actions,
.clsc-helper {
	margin: 0 0 1rem;
}

.clsc-field label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.clsc-field input[type="text"],
.clsc-field input[type="password"] {
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 0.7rem 0.85rem;
	border: 1px solid;
	border-radius: 8px;
	background: #fff;
	font-size: 1rem;
	line-height: 1.4;
}

.clsc-field input:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.clsc-remember label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.clsc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1.25rem;
	border: 1px solid;
	border-radius: 8px;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
}

.clsc-button:hover,
.clsc-button:focus {
	filter: brightness(0.95);
	color: #fff;
	text-decoration: none;
}

.clsc-button-link {
	margin-top: 0.25rem;
}

.clsc-link {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.clsc-notice {
	margin: 0 0 1rem;
	padding: 0.9rem 1rem;
	border-left: 4px solid;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.04);
}

.clsc-notice p:last-child {
	margin-bottom: 0;
}

.clsc-notice-error {
	border-left-color: #b32d2e;
	background: #fcf0f1;
}

@media (max-width: 600px) {
	.clsc-box {
		padding: 1.25rem;
	}

	.clsc-button {
		width: 100%;
	}
}
