html {
  min-height: 100%;
  position: relative;
  font-size: 100%;
}

html, body {
  height: 100%;
}

.ftx-main-sec {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

.ftx-signup-header {
  background-color: #053c68;
  display: flex;
  justify-content: center;
}

.ftx-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ftx-signup-form {
  background-color: #fafafa;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
@media screen and (max-width: 991px) {
  .ftx-signup-form {
    padding: 30px 20px;
  }
}
.ftx-signup-form .first-name-group {
  display: flex;
  flex-direction: column;
}
.ftx-signup-form .first-name-group .first-label {
  margin-top: 15px;
  margin-bottom: 3px;
  color: #333;
}
.ftx-signup-form .first-name-group input:focus {
  border-color: #4d72cc;
  box-shadow: 0 0 0 4px #ebebeb;
  outline: none;
}
.ftx-signup-form .first-name-group .first-input {
  align-items: stretch;
  background-color: #ffffff !important;
  border: 0.0625rem solid #7a7a7a;
  border-radius: 0.25rem;
  display: flex;
  height: 40px;
  position: relative;
  transition: border-color 0.2s ease;
  min-width: 0;
  max-width: 640px;
  width: 100%;
  padding: 15px;
}
.ftx-signup-form .passwords {
  position: relative;
}
.ftx-signup-form .password-group {
  position: relative;
}
.ftx-signup-form .password-group #eye-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
}
.ftx-signup-form .ftx-signup-title {
  color: #212338;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .ftx-signup-form .ftx-signup-title {
    margin-bottom: 10px;
  }
}
.ftx-signup-form .ftx-academy-submit {
  background-color: rgb(0, 140, 255);
  border-color: rgb(0, 140, 255);
  padding: 13px 40px;
  border: 0;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  margin: 10px 0 15px;
}
.ftx-signup-form .ftx-academy-submit[disabled] {
  opacity: 0.5;
}
.ftx-signup-form .ftx-academy-submit:hover {
  background-color: rgb(50, 162, 254);
  border-color: rgb(50, 162, 254);
}
.ftx-signup-form .ftx-form-footer {
  text-align: center;
}
.ftx-signup-form .ftx-form-footer .login-link {
  color: rgb(0, 140, 255);
  text-decoration: none;
  font-weight: 600;
}

.first-input.error {
  border-color: #d93838 !important;
}

.ftx-signup-footer {
  padding: 15px;
}
@media screen and (max-width: 991px) {
  .ftx-signup-footer {
    text-align: center;
  }
}
.ftx-signup-footer .ftx-copy-acdemy {
  color: aliceblue;
}

.form-group .error {
  color: #d93838 !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  margin-top: 5px;
}

.messages {
  text-align: center;
  font-weight: 400 !important;
  font-size: 14px !important;
}
.messages .error {
  background: #d93838 !important;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
}
.messages .success {
  background: rgb(50, 194, 81);
  color: #fff;
  border-radius: 5px;
  padding: 10px;
}
