#_registerContainer{
    position: fixed;
    z-index: 999;
    
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    min-width: 400px;
}

#_registerCard{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: rgb(255, 255, 255);
    min-height: 680px;
    max-height: 700px;
    width: 550px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.7) 6px 6px 15px;
    font-size: 1rem;
}

#_registerTitle{
    position: relative;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

#_closeRegister{
    position: absolute;
    top: 0px;
    right: 10px;
    color: #000000;
    font-size: 30px;
    font-weight: bold;
}

#_closeRegister:hover{
    cursor: pointer;
}

#_registerFormContainer{
    width: 85%;
}

._registerLabel{
    margin-left: 10px;
}

._registerInput{
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
    border: none;
    border-radius: 22px;
    background-color: #ebebeb;
    font-size: 1rem;
    padding: 12px;
    box-shadow: rgba(41, 41, 41, 0.5) 2px 2px 10px;
}

._registerInput:focus{
    outline: none;
}

#_ppContainer{
    height: 30px;
}

#_registerButton{
    margin-top: 20px;
    font-size: 1.3rem;
    border-radius: 30px;
    color: white;
    background-color: rgb(81, 154, 236);
}

#_registerButton:hover{
    cursor: pointer;
    background-color: rgb(38, 120, 214);
}

._regInputContainer{
    height: 70px;
}

._regError{
    position: relative;
    left: 10px;
    top: -18px;
    color: red;
    font-size: 0.8rem;
    font-weight: 600;
}

#_ppError{
    position: relative;
    top: initial;
}