body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1C1C1C;
    color: #FFF;
    min-height: 100vh;
    font-family: "Karla", sans-serif;
}

.container {
    background: #1F2937;
    border-radius: 5px;
    padding: 40px;
}

@media (max-width: 600px) {
  .container {
    max-width: 100%;
  }
}

.highlight {
    color: #894DF0;
}

.form-field {
    margin: 5px 0;
    font-weight: bold;
    accent-color: #7C3AED;
}

input[type="range"] {
    display: block;
    margin: 5px 0;
}

button {
    border-radius: 5px;
    border: solid 2px #7C3AED;
    background: #7C3AED;
    color: #FFF;
    padding: 5px 15px;
    cursor: pointer;
    box-sizing: border;
    margin-top: 5px;
}

button:hover, button:focus {
    background: #5F23C6;
    border: solid 2px white;
    transition: background 0.5s, border 0.5s;
}

.password-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 5px;
}

hr {
    border: solid 1px #2F3E53;
    margin: 20px 0;
}

.password {
    width: 100%;
    border-radius: 5px;
    background: #273549;
    padding: 5px;
    cursor: pointer;
    height: 1em;
}

.password[aria-disabled="false"]:hover, .password[aria-disabled="false"]:focus {
    background: #2c3644;
    transition: background 0.5s;
}

.password[aria-disabled="true"] {
    cursor: not-allowed;
}

#status-el {
    height: 1em;
}