#captchaCanvas{
  display: none;
}

@font-face {
  font-family:captchaFont;
  src:url("junkos typewriter.ttf");
}
.containerr{
  border: 1px solid darkgray;
  border-radius: 5px;
  background-color: #eff0f1;
  padding:7px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index: 4000, !important;
}
.controlContainer {
  display: flex;
   margin: 0 auto;
}
.buttonContainer {
  display: flex;
  flex-direction: column;
  margin:5px;
  padding:5px;
  border-radius:5px;
  border: 1px solid darkgray;
}
.inputContainer{
  display: flex;
  flex-direction: column;
  margin: 5px;
  padding: 5px;
  border:1px solid lightgrey;
  border-radius: 5px;
}
button {
  cursor:pointer;
}

li button {
  
    background-color: #ff2782;
    color: #fff;
    display: block;    
     margin: 10px 16px;
}


#refreshText {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-color: lightgray;
}
#readText {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-color: lightgray;
  width: 100%;
}
#submit {
  width:44%;
  height:28px;
  margin-top: 5px;
  background-color: whitesmoke;
  border-radius: 2px;
  border: 1px solid;
  font-weight: bold;
}
#checkCaptchaText {
  margin:10px;
  font-size: 12px;
}
.submitContainer {
  display:flex;
}
#userText {
  border-color: lightgray;
}

#userClose {
  width: 100%;
}

img {
  border-radius:5px;
}

 #popupDialog {
                display: none;
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                padding: 20px;
                background-color: #fff;
                border: 1px solid #ccc;
                box-shadow: 0 4px 8px
                    rgba(0, 0, 0, 0.1);
                    z-index: 4000, !important;
                
            }

            #overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 4000, !important;
                
            }


