body {
	background-color: #f1f1f1;
}

#app {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
}

#password-input {
	outline: none;
	margin-left: 15px;

	padding: 0px 10px;

    width: 320px;
	height: 24px;

	text-align: center;

	border: 1px solid lightgray;
	border-radius: 16px;

	background: rgb(255, 255, 255);

	transition-property: width;
	transition-duration: .5s;
}

#password-input:focus {
	background: rgb(232, 232, 232);
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #141414;
}

#password {
    font-size: 4rem;
    font-weight: bold;
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 256px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #b8d5d4;
    color: #004340;
    font-size: 24px;
    cursor: pointer;
    transition: .5s;
}

.tool:hover {
	background-image: linear-gradient(315deg, #b8d5d4, #dadada);
    translate: 0 -5px;
    box-shadow: 0px 10px 20px #0000001a;
}

a {
	margin: 5px;
    text-decoration: none;
}

#password span {
    border-radius: 8px;
    transition: .5s;
}

#password span:hover {
    padding: 0px 4px;
    margin: 0px 8px;
    background-color: #444;
}

.digit {
    color: #34b4ff;
}

.upper-case-letter {
    color: rgb(199, 199, 199);
}

.lower-case-letter {
    color: white;
}

.special {
    color: #ff0052;
}