@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anybody:wght@200;300&display=swap');

* {
	box-sizing: border-box;
}

body {
	background: url(./images/passwordbg2.png);
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.405);
	background-blend-mode: overlay;
	color: #fff;
	display: flex;
	font-family: 'Lato', sans-serif;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	min-height: 100vh;
}

p {
	margin: 5px 0;
}

h2 {
	margin: 10px 0 20px;
	text-align: center;
}

.logo {
	position: relative ;
	top: 90%;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.24);
	font-family: 'Anybody', cursive;
	font-weight: 200;
	margin-left: 21%;
}

.logo span {
	font-weight: 700;
}

.logo a {
	color: rgba(255, 255, 255, 0.4);
}

.logo a:hover {
	color: white;
	transition: 400ms ease;
}

input[type=checkbox] {
	margin-right: 0;
}

input[type=number] {
	margin-right: 0;
	background: transparent;
	color: white;
	font-family: 'Lato', sans-serif;
	width: 4rem;
	box-shadow: none;
	border: 1px solid darkgray;
	border-radius: 5px;
}

.container {
	background-color: #2b2b68d0;
    border-radius: 18px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	padding: 20px;
	width: 350px;
	max-width: 100%;
}

.result-container {
	background-color: #1e1e51;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	font-size: 18px;
	letter-spacing: 1px;
	padding: 12px 10px;
	height: 50px;
	width: 100%;
}

.result-container #result {
  	word-wrap: break-word;
	max-width: calc(100% - 40px);
}

.result-container .btn {
	font-size: 20px;
	position: absolute;
	top: 5px;
	right: 5px;
	height: 40px;
	width: 40px;
}

.btn {
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	padding: 8px 12px;
	background-color: #1e1e51;
    border-radius: 10px;
	margin-bottom: 1rem;
}

.btn:hover {
	background-color: #1e1e5180;
}

.btn-large {
	display: block;
	width: 100%;
}

.setting {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px 0;
}

@media screen and (max-width: 400px) {
	.result-container {
		font-size: 14px;
	}
}
