:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

.contents{
    width: 85%;
    height: auto;

    border: none;
    border-radius: 10px;

    background-color: #33333360;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px;

    margin-bottom: 30px;
}

.element{
    width: 90%;
    height: 50px;

    display: flex;
    align-items: center;
}

.element:first-child{
    border-top: 2px solid var(--background-color-1);
}

.element:last-child{
    border-bottom: 2px solid var(--background-color-1);
}

.element:not(:first-child){
    border-top: 1px solid var(--background-color-1);
}

.element_contact, .element_email{
    display: none;
}

.element_id{
    width: 20px;
    color: var(--point-color-1);
    font-size: 16px;

    padding-left: 15px;
}

.element_name{
    width: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;

    padding-left: 30px;
}

.element_date{
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.password{
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pw_title{
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 15px;
}

.pw_input{
    width: 180px;
    height: 40px;

    border: none;
    border-radius: 8px;

    background-color: rgba(255, 255, 255, 0.3);

    padding-left: 10px;

    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;

    margin-bottom: 15px;
}

.pw_input:focus{
    outline: none;
}

.pw_button{
    width: 100px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;

    cursor: pointer;

    background-color: var(--point-color-1);

    color: black;
    font-size: 16px;
}