body {
    display: flex;
    align-items: center;
    justify-content: center;
}

li {
    color: var(--text-color);
    list-style-type: none;
    text-align: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 970px;
    height: 485px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(30px);
    background: #0E0E0E;
    row-gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
    max-width: 360px;
}

.auth {
    width: 360px;
    height: 50px;
}

.password {
    position: relative;
    display: flex;
    align-items: center;
}

.svg-pass {
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.svg-pass:hover > path {
    fill: var(--active-color);
    transition: ease-in-out 0.3s;
}

.svg-pass:hover > rect {
    fill: var(--active-color);
    transition: ease-in-out 0.3s;
}
