* {
    font-family: 'Noto Sans';
}

.center {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.password {
    font-size: 20px;
    width: 300px;
    border-radius: 14px;
    resize: none;
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#rules {
    display: grid;
}

.rule {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 8px;
    border-radius: 16px;
    border: 5px solid red;
    background-color: rgba(255, 87, 87, 0.5);
    color: red;
    transition: all 0.3s ease;
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.correct {
    border: 5px solid green;
    background-color: rgba(61, 255, 181, 0.692);
    color: green;
}

.hidden {
    position: absolute;
    left: 0px;
    right: 0px;
    height: 0px;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    opacity: 0;
}