* {
	box-sizing: border-box;
}

body {
	background-color: #fffff0;
	color: #fff;
	display: flex;
	font-family: 'Muli', sans-serif;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	min-height: 100vh;
}

#message {
    display: none;
    padding: 10px;
	background-color: lawngreen;
	color: black;
}


/* p {
	margin: 5px 0;
} */

h2 {
	margin: 10px 0 20px;
	text-align: center;
}

input[type=text] { 
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
  }

input[type=checkbox] {
	margin-right: 0;
}

.container {
	background-color: #23235B;
	box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
	padding: 20px;
	width: 350px;
	max-width: 100%;
}

/* Area that relects the Password */
.result-container {	
    background-color: #87cefa;
    display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	font-size: 18px;
	border-radius: 4px;
	letter-spacing: 1px;
	padding: 10px 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:black;
	cursor: pointer;
	border-radius: 4px;
	font-size: 16px;
	padding: 8px 12px;
	background-color: greenyellow
}

/* Clipboard button */
#clipboard{
	border-style: outset;
	border-radius: 4px;

}

/* Password Generate button */
.btn-large {
	display: block;
	width: 100%;
}

.setting {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px 0;
}

@media screen and (max-width: 600px) {
	.result-container {
		font-size: 14px;
	}
}

