/* Version 1.0.0 */

#captchaCanvas{
  display: none;
}

@font-face {
  font-family:captchaFont;
  src:url("../fonts/junkos_typewriter.ttf");
}
.containerCaptcha {
  display: flex;
  width: auto;
  max-width: 350px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid darkgray;
  border-radius: 5px;
  background-color: #eff0f1;
  padding: 10px;
  text-align: center;
  gap: 10px;
}
.controlContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.buttonContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.inputContainer{
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}
button {
  cursor:pointer;
}
#refreshText {
  height: 35px;
  width: 35px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-color: lightgray;
  margin: 0;
}
#readText {
  height: 35px;
  width: 35px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-color: lightgray;
  margin: 0;
}
/*
#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;
}
img {
  border-radius:5px;
}