#password-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Start near the top, adjust with padding */
    padding-top: 15vh; /* Pushes content down */
    height: fit-content;
    box-sizing: border-box;
    text-align: center;
    background-color: whitesmoke;
}


.sarge {
    width: 300px;
    height: auto;
    margin-top: 50px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

#password-heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 20px 0 25px 0;
    padding: 0;
    color: #000;
}

.password_input{
    flex-direction: column;
    width: 150px;
    margin: 0 auto;
}

#password{
    border: none;
    border-bottom: 0.3px solid black;
    background-color: whitesmoke;
}

.passwordButton{
    background-color: whitesmoke;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.513);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 2px;
    margin-top: 20px;
    padding: 2px 10px;
    transition: color 0.1s ease-in-out;
    margin-bottom: 60px;
}

.passwordButton:hover{
    color: rgba(0, 0, 0, 0.452);
}


/* Signature */ 
.password_img img{
    width: 250px !important;
    transform: scale(0.8);
}

@media (max-width: 768px){
    .sarge {
        width: 65%;
    }

}
