@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');


* {
	box-sizing: border-box;
}

body {
	background-color: white;
	color: rgb(49, 49, 49);
	display: flex;
	font-family: 'Lato', sans-serif;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0px;
	padding: 0px;
}

p {
	margin: 5px 0;
}

h2 {
	margin: 10px 0 20px;
	text-align: center;
}

input[type=checkbox] {
	margin-right: 0;
}

.container {
	display: flex;
}

.password-container {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.40) 120%) #989898;
	background-blend-mode: multiply, multiply;
	color: white;
	box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
	padding: 20px;
	width: 350px;
	max-width: 100%;
	border-radius: 10px;
}

.result-container {
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	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: #DCD9D4;
	background-image: linear-gradient(to left, #BDBBBE 0%, #9D9EA3 100%), radial-gradient(88% 271%, rgba(255, 255, 255, 0.25) 0%, rgba(254, 254, 254, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%), radial-gradient(50% 100%, rgba(255, 255, 255, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
	background-blend-mode: normal, lighten, soft-light;
	border-radius: 5px;
}

.btn-large {
	display: block;
	width: 100%;
}

.setting {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px 0;
}

.title-container {
	width: 350px;
	max-width: 100%;
	text-align: center;
	font-size: 30px;
	padding: 10px;
}

.footer-text {
	font-size: 30px;
	padding: 70px 20px 10px 20px;
}

.red-heart {
	color: rgb(246, 77, 77);
}

a {
	color: rgb(96, 96, 97);
	text-decoration: none;
}

a:hover {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

@media screen and (max-width: 700px) {
	.container {
		display: flex;
		flex-direction: column;
	}
	.password-container { order: 2; }
    .title-container { order: 1; }

	.result-container {
		font-size: 14px;
	}

	.title-container {
		font-size: 20px;
		padding: 0px;
		margin-bottom: 20px;
	}

	h1 {
		margin: 0;
		padding: 0;
	}

	.footer-text {
		font-size: 20px;
		padding: 0px 10px 0px 10px;
		padding-top: 20px;
	}
}