#adminInput{
    border-style: outset;
    width:25rem;
    height:9rem;
    margin:9rem auto;
    display:flex;
    flex-direction: column;
    background-color: rgba(196, 200, 205);
}

body{
    background-color:black;
}

#header{
    height:2rem;
    background-color: rgba(0, 0, 134);
    color:white;
    display:flex;
    flex-flow:column;
    justify-content: center;
    padding-left: 1%;
    margin-bottom: 2%;
}

 #passwordContainer {
    margin-bottom: 2%;
    margin-left:1%;
    display:flex;
    flex-direction: row;
    margin-top: 2rem;
}

#passwordContainer input{
    margin-left:3.4%;
    border-style:inset;
    width:75%;
}

#updatePassword{
    display:flex;
    justify-content: center;
}

#enterButton {
    background-color:rgba(196, 200, 205);
    border-style:outset;
    border-color:white;
}

#enterButton:hover{
    border-style:inset;
}

#passwordInput{
    text-align: center;
    visibility: hidden;
}

#passwordContainer:hover ~ p{
    visibility: visible;
}

