div.recover-container
{
    width: 95%;
    margin: 0 auto;
}

p.logged-in
{
    font-size: 1.2rem;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 24px;
}

p.recover-top
{
    font-size: 1.2rem;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 0;
}

label.recover
{
    font-size: 1.2rem;
}

div.recovery-form
{
    display: flex;
    flex-direction: column;
    width: 350px;
}

button.recover
{
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid #0e0e0e;
    cursor: pointer;
    background-color: #e77ab7;
    padding: 8px 32px;
    border-radius: 8px;
    position: relative;
    width: 260px;
    margin: 12px auto;
}

button.recover::after
{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px; /* adjust vertical position */
    width: 0%;
    height: 2px;
    background: #0e0e0e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

button.recover:hover::after
{
    width: 135px;
}

button.recover:active
{
    background-color: #FFFFFF;
}

form.recovery
{
    margin-bottom: 0;
    padding-bottom: 24px;
}