.verification-container {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  width: 400px;
  height: 500px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px 25px 0px;
  background-color: rgba(255, 67, 18, 1);
  box-shadow: 0 6px 34px 0 rgba(238, 119, 35, 0.5);
  z-index: 9999;
}
@media screen and (max-width: 500px) {
  .verification-container {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    bottom: 0;
    right: 0;
    box-shadow: none;
    border-radius: 0;
  }
}
.verification-container form {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form div {
  width: 75%;
  text-align: center;
  padding: 40px;
  padding-bottom: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 6px 34px 0 rgba(128, 128, 128, 1);
}

.form p {
  margin-bottom: 5px;
}

.form input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc !important;
}


.submit-button {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.5);
}

.start-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 31px 31px 6px;
  /*background-color: rgb(0, 118, 192);*/
  background-color: rgba(255, 67, 18, 1);
  /*background-color: rgba(255, 255, 255, 1) */
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
}

.closing-cross {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 20px;
  padding: 5px;
  cursor: pointer;
}

.closing-cross:hover {
  background-color: rgb(207, 194, 194);
}

.error {
  font-weight: normal;
  color: red;
}