.myinfo, .myinfo *{
  box-sizing: revert;
}

html, .myinfo{
  box-sizing: revert;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-box {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cfte-logo-box {
  width: 100px;
}

.cfte-logo-box img {
  width: 100%;
}

.cfte-register-options {
  display: flex;
  flex-wrap: wrap;
}

.cfte-register-error, .cfte-register-thankyou, .cfte-register-loading{
  display: none;
  padding: 16px;
}

.cfte-register-thankyou span, .cfte-register-error span {
  text-decoration: underline;
  color: blue;
}

.cfte-register-loading img{
  width: 50%;
  position: relative;
  transform: translateX(50%);
}


.cfte-register-myinfo, .cfte-register-online-form {
  flex: 1 1 250px;
  padding: 10px
}

.register-header {
  font-weight: 600;
}

.register-header img {
  width: 89px;
}

#formAuthorise a {
  background: #F11625;
  color: white;
  padding: 10px;
  transition: all 0.3s ease;
}

#formAuthorise a:hover {
  text-decoration: none;
  background: darkred;
}

.hidden {
  display: none;
}

.data-form {
  margin-top: 3rem;
}

.data-form label {
  font-size: 0.85rem;
  line-height: 1.25rem;
}

.data-form input, .data-form select {
  border-color: #e1e4e8;
  box-sizing: border-box;
  border-width: 1px;
  border-radius: 0.25rem;
  border-style: solid;
  padding: 8px;
  font-size: 0.85rem;
  transition: all .1s ease-out;
  width: 250px;
}

.data-form input:focus {
  outline: none !important;
  box-shadow: 0 0 2px #F11625;
}

.button-container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.button-container button {
  background-color: #F11625;
  color: white;
  border: none;
  cursor: pointer;
  padding: 5px 40px;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) all;
  border-radius: 20px;
  outline: none !important;
}

.button-container button:hover {
  opacity: 0.7;
}