body {
    padding: 0;
}

.authentication {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
}

.authentication__db {
    position: fixed;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
}

.authentication__wrapp {
    position: relative;
    z-index: 9999;
    max-width: 535px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(-50%);
    top: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.authentication__logo {
    text-align: center;
}

.authentication__help {
    text-align: center;
    margin-bottom: 20px;
}

.authentication__help h1 {
    margin-bottom: 50px;
}

.authentication__help p {
    text-align: left;
    font-size: 13px;
}

.authentication__help ul {
    margin-top: 10px;
    font-size: 13px;
}

.authentication__help ul li {
    list-style: none;
    text-align: left;
}

.authentication__container {
    display: flex;
}

.authentication__inputs input {
    width: 30px;
    height: 30px;
    border: 1px solid green;
    border-radius: 50%;
    text-align: center;
    font-size: 17px;
}

.authentication__error {
    display: none;
}

.authentication__code {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    margin-left: 20px;
}

.authentication__btn button {
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid green;
    background: none;
    cursor: pointer;
}

.authentication--noq .authentication__code {
    margin: 0;
}

.authentication--noq .authentication__container {
    text-align: center;
}

.authentication--noq .authentication__code {
    width: 100%;
}

.authentication--noq .authentication__inputs {
    margin-top: 15px;
    margin-bottom: 15px;
}

.authentication__reset {
    cursor: pointer;
    margin-top: 15px;
}