#inputCodeBox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  background-color: rgb(248, 248, 248);
  border-style: solid;
  border-width: 0px;
  border-radius: 0px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 11px;

  /*padding-top:calc(30% - 40px);*/
}

#inputCodeLabel {
  width: 100%;
  height: 30px;
  font-size: 22px;
  color: darkblue;
  font-family: Arial, Roboto, Verdana;
  font-weight: bold;
}
#inputCode {
  min-width: 100px;
  height: 40px;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  color: grey;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Verdana, Roboto;
  font-weight: 700;
  background-color: white;
}


.container {
  background: #ffffff;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.logo {
  width: 110px;
  margin-bottom: 15px;
}

h1 {
  font-size: 22px;
  color: #222;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: 0.2s ease;
}

input:focus {
  border-color: #007bff;
}

button {
  width: 100%;
  margin-top: 18px;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #005fcc;
}

#message {
  height:30px;
  width:98%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top: 15px;
  font-size: 15px;
  color: #444;
  background-color:transparent;
}

#messageText{
 color:red;
 overflow-wrap:break-word;
}
