.newPassword{
    border: 1px solid #999;
}
#contentToCopy{
    display: grid;
    grid-template-columns: auto auto auto;
    place-items: center;
}
.oldPassword{
  
   
    padding: 10px;
    width: 100%;
}

.logo-container{
    display: flex;
    justify-content: center; /* Horizontally center the children */
    margin-bottom: 20px;
}

#logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
   
}

#logoInput {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.watermark {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: rgb(134, 134, 134); /* Semi-transparent white */
    pointer-events: none; /* Ensure watermark doesn't block clicks */
    background-color: aliceblue;
}