body{
    background: #292e3c;
    font-family: inter;
    margin: 0;
}

.content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 89vh;
    border-radius: 8px;
    padding: 40px 30px;
}

.contentReg{
    background: #222836;
    border-radius: 8px;
    padding: 40px 30px 25px;
    font-size: 15px;
}

.contentReg__name{
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.contentReg__regbase{
    display: flex;
    flex-direction: column;
}

.contentReg__regbase p{
    margin-left: 2px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.77);
}
.contentReg__regbase p:nth-child(1){
    margin-top: 0;
}

.input{
    border-radius: 8px;
    padding: 8px 10px;
    width: 320px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.07);
    border: none;
    font-size: 15px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 10px;
}

.contentReg__rememberMe{
    display: flex;
    color: #fff;
    flex-direction: row;
    align-items: center;
}

.rememberMe-checkbox{
    border: 1px solid rgba(0, 0, 0, 0.28);
    border-radius: 4px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: none;
    cursor: pointer;
}

.contentReg__signUp-Button{
    background: #1d9a6c;
    border-radius: 8px;
    padding: 8px 12px;
    height: 40px;
    border: none;
    font-weight: 500;
    line-height: 145%;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
}

.contentReg__signUp-Button:hover{
    background: #378f6e;
}

.contentReg__button{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 15px;

}

.contentReg__button a{
    margin-top: 22px;
    text-align: center;
    text-decoration: none;
    color: #1D9A6C;
}

.contentReg__button a:hover{
    color: #008f58;
}