html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    font-family: "Lucida Console", Monaco, monospace;
    margin-top: 3rem;
}
.container {
    margin: auto;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}
#crypted-pass {
    font-size: 1em;
}
#crypt-result {
    background-color: #e1ebca;
    margin-top: 0.5em;
    padding: 0.5em;
    font-size: 1.5em;
    overflow-wrap: break-word;
}
#password-field {
    width: 50%;
    height: 1em;
    font-size: 3em;
    display: block;
    margin-bottom: 0.5em;
}
.password-field {
    width: 100%;
    height: 1em;
    font-size: 1em;
    display: block;
    margin-bottom: 0.5em;
}
button {
    height: 3em;
    padding: 0 3em;
    max-width: 150px;
    cursor: pointer;
    background: #418bba;
    color: #fff;
    border: none;
    font-weight: 700;
}

button:hover {
    background: #1d72a8 !important;
}

button:active {
    background: #1b5172 !important;
}

input {
    border: 1px solid #bebebe40;
    padding: 10px;
    width: auto !important;
    margin-top: 15px;
    margin-bottom: 15px;
}
img {
    width: 100%;
    border: 1px solid #bebebe40;
}
.form-container {
    background-color: #f2f2f2;
    margin-bottom: 0.5em;
    border: 1px solid #bebebe40;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.result-container {
    background-color: #f2f2f2;
    padding: 1em;
    margin-top: 0.5em;
    border: 1px solid #bebebe40;
    width: 100%;
}

.hide {
    display: none;
}
