#wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
}

#wrap .login--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 121px);
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 126px;
  gap: 15px 0;
}

#wrap .login--wrap .logo--box {
  margin-bottom: 50px;
  /* width: 150px; */
}

#wrap footer {
  width: 100%;
  background-color: #282c35;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  gap: 10px;
  font-size: 12px;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer_frame {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer_text {
  font-size: 16px;
  font-family: 'NotoSans-Medium'; 
}
#wrap footer .company-name {
  font-size: 13px;
}

form {
  width: 22%;
}

form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form .form-row .submit-btn {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 30px;
}

form .form-row .submit-btn .input-data:first-child .inner {
  background: -webkit-linear-gradient(right, #4b4d52, #282c35);
  -webkit-transition: all 0.4s;
}

form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .form-row .input-data .form-row {
  margin-top: 30px;
}

form .form-row .input-data {
  width: 100%;
  height: 50px;
  position: relative;
}

form .form-row .textarea {
  height: 70px;
}

.login__input {
  text-indent: 10px;
}

.input-data input,
.textarea textarea {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.input-data input:focus ~ label,
.input-data input:valid ~ label,
.textarea textarea:focus ~ label,
.textarea textarea:valid ~ label {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  font-size: 14px;
  color: #3498db;
}

.textarea textarea {
  resize: none;
  padding-top: 10px;
}

.input-data label {
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #aaa;
  text-indent: 10px;
  font-family: 'S-CoreDream-6Bold';
}

.textarea label {
  width: 100%;
  bottom: 40px;
  background: #fff;
  font-weight: bold;
}

.input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}

.input-data .underline:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #3498db;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.input-data input:focus ~ .underline:before + .input-data input {
  border: none;
}

.submit-btn .input-data {
  overflow: hidden;
  height: 45px !important;
  width: 35% !important;
}

.submit-btn .input-data .inner {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right, #aaa, #56d8e4);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.submit-btn .input-data:hover .inner {
  left: 0;
}

.submit-btn .input-data input {
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.error--box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 35px;
  line-height: 35px;
}

.error--box .error__span {
  color: #ff3b3b;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  visibility: hidden;
}
