:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

.main{
    width: 1350px;
    height: auto;

    display: flex;
    justify-content: space-between;
}

.contents{
    width: 1050px;
    height: auto;

    padding-top: 30px;
    padding-bottom: 30px;

    margin-bottom: 50px;

    border: none;
    border-radius: 10px;

    background-color: #33333360;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.element{
    width: 90%;
    height: 60px;

    display: flex;
    align-items: center;

    padding-left: 50px;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.element:hover{
    transform: scale(1.05);
    background-color: #333333;
    border: none;
}

.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_id{
    width: 100px;

    color: var(--point-color-1);
    font-size: 20px;
    font-weight: bold;
}

.element_name{
    width: 300px;

    color: white;
    font-size: 16px;
}

.element_contact{
    width: 250px;
    color: white;
    font-size: 16px;
}

.element_email{
    width: 250px;
    color: white;
    font-size: 16px;
}

.element_date{
    width: 150px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
}

.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: 20px;
}

.pw_input{
    width: 250px;
    height: 30px;

    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: 15px;

    margin-bottom: 20px;
}

.pw_input:focus{
    outline: none;
}

.pw_button{
    width: 135px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;

    cursor: pointer;

    background-color: #FFFFFF0D;

    color: #FFFFFFE6;
    font-size: 15px;
}

.pw_button:hover{
    border: none;

    background-color: var(--point-color-1);

    color: black;
}