body {
  background-image: url(/images/login-register-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

h1, .h1_style {
  font-size: 40px;
  text-align: center;
  line-height: 45px;
  margin: 20px 0px;
}

.h2_style {
  font-size: 25px;
  text-align: left;
  line-height: 30px;
  margin: 10px 20px;
}

.register_form_outer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-wrapper-register {
  width: 100%;
  position: relative;
  left: 0;
  transition: all .5s ease-in-out;
}

.register_form {
  padding: 20px 35px 35px 35px;
  border: 3px solid;
  border-image: linear-gradient(to right, #836323 0, #c3a568 51%, #836323 100%);
  border-image-slice: 1;
  background: rgba(30, 35, 40, 0.85);
  color: #c8aa6e;
  position: relative;
  overflow: hidden;
  width: 550px;
}

form#register_form .input_box {
  padding: 10px 20px;
  display: flex;
}

form#register_form .input_box.double-input .input {
  width: calc(50% - 10px);
}

form#register_form .input_box .input {
  width: 100%;
}

form#register_form .input_box.double-input .input:nth-child(1) {
  margin-right: 20px;
}

form#register_form input {
  background: transparent;
  border: 2px solid;
  border-image: linear-gradient(to right, #836323 0, #c3a568 51%, #836323 100%);
  border-image-slice: 1;
  padding: 0px 10px;
  font-size: 20px;
  height: 40px;
  color: rgba(240, 230, 210, 0.85);
  width: 100%;
  transition: all .3s ease-in-out;
}

form#register_form .input_box i {
  line-height: 40px;
  text-align: center;
  background: linear-gradient(to right, #836323 0, #c3a568 51%, #836323 100%);
  color: rgba(240, 230, 210, .9);
  font-weight: 100;
  font-size: 18px;
  display: block;
}

form#register_form .input_box i.fas.fa-key {
  font-weight: bold;
}

form#register_form .input_box .input_icon {
  width: 0px;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

form#register_form .input_box.in_focus .input_icon {
  width: 40px;
}

form#register_form .input_box.in_focus input {
  width: 300px;
}

form#register_form .input_box .submit_button {
  text-align: right;
  margin-top: 25px;
  width: 100%;
}

form#register_form .input_box .submit_button input {
  display: inline-block;
  width: initial;
  padding: 7px 35px;
  height: initial;
  cursor: pointer;
}
