.container {
	position: absolute;
	inset: 50% 50% auto auto;
	transform: translate(50%, -50%);

	max-width: 450px;
	padding: 20px;

	display: flex;
	flex-direction: column;
	gap: 1rem;

	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	background-color: #FFF;
}

.container > h1 {
	text-align: center;
	font-size: 1.3rem;
}

.password-length-wrapper {
	display: grid;
	grid-template-columns: 40px auto 40px;
	gap: 1rem;
}

.pass-conttent-edit-wrapper {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}


input, button {
	padding: 10px;

	border-radius: 10px;
}

input {
	border: 1px solid #ddd;

	color: #000;
}

input[type='checkbox'] {
	appearance: none;
	-webkit-appearance: none;

	width: 20px;
	height: 20px;

	outline: none;
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: white;

	cursor: pointer;

	transition: all .2s ease;

	&:checked {
		background-color: #191F25;
		border-color: #191F25;
	}
	&:checked::after {
		content: "✓";
		color: white;
		font-size: 16px;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 100%;
	}
}

button {
	border: none;
	background-color: #191F25;

	color: #FFF;
}
button:hover {
	background: #191F25;
}

.regenerate-btn {
	padding: 5px;

	display: grid;
	aspect-ratio: 1;
	place-content: center;
}
.regenerate-btn > svg {
	width: 100%; height: 100%;
}


input[type="number"] {
	appearance: none;
	-webkit-appearance: textfield;
	-moz-appearance: textfield;

	text-align: center;

	&::-ms-clear {
		display: none;
	}
	&::-webkit-inner-spin-button,
	&::-webkit-outer-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}
}


.pass-cont-inp {
	display: grid;
	grid-template-columns: max-content auto;
	gap: 1rem;

	user-select: none;
}


.pass-cont {
	display: grid;
	grid-template-columns: auto max-content;
	gap: 1rem;
}