@import url("https://fonts.loli.net/css2?family=Poppins:wght@200;400;600&display=swap");

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

* {
	box-sizing: border-box;
}

body {
	background-color: rebeccapurple;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Poppins", sans-serif;
	margin: 0;
	min-height: 100vh;
}

.pw-container {
	background-color: rgb(46, 12, 80);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	min-width: 400px;
}

.pw-header {
	padding: 1rem;
}

.pw {
	background-color: rgb(69, 28, 109);
	display: flex;
	font-size: 1.5rem;
	align-items: center;
	height: 70px;
	width: 100%;
	position: relative;
	padding: 1rem;
	overflow: auto;
}

.pw button {
	background-color: white;
	border: none;
	color: rgb(29, 2, 56);
	cursor: pointer;
	font-family: inherit;
	font-weight: bold;
	padding: 0.25rem;
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(0, 20%);
	transition: opacity 0.2s ease, transform 0.2s ease;
	opacity: 0;
}

.pw:hover button {
	opacity: 1;
	transform: translate(0, 0%);
}

.pw-body {
	padding: 0 1rem 1rem;
}

.form-control {
	color: #eee;
	display: flex;
	justify-content: space-between;
	margin: 0.75rem 0;
}

.generate {
	background-color: #ecb602;
	border: none;
	color: rebeccapurple;
	cursor: pointer;
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 0.75rem;
	margin-top: 1rem;
	width: 100%;
}
