.pp{
    width: 80%;
    display: flex;
    flex-direction: column;
    margin:15px auto; margin-left: 0;
    padding:15px;
    background: #23232b;
    border:solid 0px #414241;
    border-radius:5px;
    box-shadow: 1px 10px 10px rgba(0,0,0,0.03);
    box-sizing:border-box;
    animation: fadeIn 500ms ease-in-out;
}

.pp label{
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pp input{
    padding:10px;
    margin-bottom: 10px;
    background: #413535;
    border-radius: 5px;
    border: solid 1px #534848;
}

.pp input[type="submit"]{
    background: #222;
    color:#beb8b8;
    width: 50%;
    margin: 0 auto;
}

.pp_error{
    background: rgb(124, 15, 15);
    color:#c9a1a1;
    padding: 15px;
    text-align: center;
    box-shadow: 1px 10px 10px rgba(0,0,0,0.03);
    border-radius: 5px;
    margin: 30px auto;
    animation: fadeIn 500ms ease-in-out;

}


@keyframes fadeIn {
    
    from{opacity: 0;
    transform:translate(0,-40px)}
    to{
        opacity: 1;
        transform:translate(0,0);
    }
}