@import url("font.css");

:root {
  --bg-blue: rgba(40, 102, 175, 1);
  --orange-hover: rgb(216, 113, 16);
  --orange: rgba(240, 127, 19, 1);
  --radius: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Shabnam", sans-serif;
}
p,
h1,
h2,
input,
select,
textarea,
h3,
h4,
h5,
h6 {
  font-family: "Shabnam", sans-serif;
  margin: 0;
}
body {
  font-family: "Shabnam", sans-serif;
  color: #212529;
  background-color: #ffffff;
}

.header-register {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #646464;
  padding-block: 0.5rem;
}
.header-register p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #646464;
}
.header-register p b {
  color: var(--bg-blue);
  font-weight: bold;
}
.header-register img {
  width: 100%;
  max-width: 100%;
}

.container-content {
  background-color: var(--bg-blue);
  border-radius: var(--radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 80vh;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;

  margin-block: 0.5rem;
}
.container-content .box-content {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  width: 100%;
  max-width: 1000px;
}
.box-content .title-box {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 0.5rem 2rem;
  align-items: center;
  border-radius: var(--radius) var(--radius) 0px 0px;
}
.box-content .title-box-login {
  display: flex;
  background-color: #ffffff;
  padding: 0.5rem 2rem;
  align-items: center;
  border-radius: var(--radius) var(--radius) 0px 0px;
}
.box-content .title-box img {
  width: 70px;
}
.box-content .title-box p,
.box-content .title-box-login p {
  color: var(--orange);
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  flex: 1;
}
.form-box {
  display: flex;
  background-color: #ffffff;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.form-box .form {
  flex: 1;
  padding: 1rem;
}
.form-box .form1 {
  flex: 1;
  background-color: #ffffff;
  border-bottom-left-radius: var(--radius);
  padding: 1rem;
}
.form .radius-drop,
.form1 .radius-drop {
  background-color: var(--bg-blue);
  border-radius: var(--radius);
  height: 100%;
  width: 100%;
  padding: 1rem;
}
.form .radius-drop .bg-blur,
.form1 .radius-drop .bg-blur {
  background: rgba(183, 233, 246, 0.25);
  backdrop-filter: blur(13px);
  border-radius: var(--radius);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.user-form {
  padding: 1rem;
}
.sub-btn {
  width: 100%;
}
.sub-btn button {
  width: 100%;
  background-color: var(--orange);
  padding: 10px;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: all 0.4s ease;
}
.sub-btn-approved button {
  width: 100%;
  background-color: var(--orange);
  padding: 10px;
  color: #fff;
  border: none;
  outline: none;
  border-radius: var(--radius);
  transition: all 0.4s ease;
}
.sub-btn button:hover {
  background-color: var(--orange-hover);
}
/* .otp-fild {
  height: 50px !important;
} */
.form-box .guid {
  padding: 1rem;
}
.guid .guid-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.guid p {
  margin-top: 0.5rem;
}
.customs-input {
  background-color: var(--orange) !important;
  border-radius: none !important;
  border-radius: 0px 5px 5px 0 !important;
  width: 180px !important;
  justify-content: center !important;
}
.placehid::placeholder {
  color: transparent;
}

/* .guid .guid-title p {
    font-size: 1.5rem;
} */

.form-box .form,
.form-box .guid {
  flex: 1;
}

/* footer */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  min-height: 7vh;
  height: auto;
  text-align: center;
  border-top: 2px solid #646464;
  gap: 0.5rem;
}
footer p {
  font-size: 1.1rem;
  color: #646464;
}
footer .iconContact {
  display: flex;
  gap: 1rem;
}

.link {
  display: inline-block;
  text-decoration: none;
}

.link:hover {
  text-decoration: none;
  color: #000;
}

/* footer */

/* otp fild */
.inputfield {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse !important;
  gap: 1rem;
  /* background-color: red; */
}
.otp-input {
  height: 3rem;
  width: 3rem;
  border: 2px solid #dad9df;
  outline: none;
  text-align: center;
  font-size: 1.5em;
  border-radius: 0.3em;
  background-color: #ffffff;
  outline: none;
  /*Hide number field arrows*/
  -moz-appearance: textfield;
}
.inputfield input[type="number"]::-webkit-outer-spin-button,
.inputfield input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.otp-input:disabled {
  color: #89888b;
}
.otp-input:focus {
  border: 3px solid var(--bg-blue);
}
/* otp fild */

/*====================*/
/* BUZZ OUT
/*====================*/

@-webkit-keyframes buzz-out-on-hover {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes buzz-out-on-hover {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.buzz-out-on-hover {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz-out-on-hover:hover,
.buzz-out-on-hover:focus,
.buzz-out-on-hover:active {
  -webkit-animation-name: buzz-out-on-hover;
  animation-name: buzz-out-on-hover;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* X-Small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
@media screen and (max-width: 767.98px) {
  .customs-input {
    display: none;
    border-radius: 5px !important;
  }
  .placehid {
    border-radius: 5px !important;
  }
  .placehid::placeholder {
    color: rgb(170, 170, 170) !important;
  }
  .header-register {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
  }
  .header-register img {
    width: 50px !important;
  }
  .form-box .form {
    padding: 0;
  }
  .form .radius-drop {
    border-radius: 0;
    padding: 1rem 0;
  }
  footer {
    flex-direction: column;
    font-size: 0.9rem;
  }
  footer p {
    font-size: 0.9rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media screen and (max-width: 991.98px) {
  .form-box {
    flex-direction: column;
  }
  .form-box .form {
    order: 1;
  }
  .form-box .guid {
    order: 2;
  }
}

/* Large devices (desktops, less than 1200px) */
@media screen and (max-width: 1199.98px) {
  /* .customs-input {
    width: 100px !important;
    font-size: auto !important;
  } */
}

/* X-Large devices (large desktops, less than 1400px) */
@media screen and (max-width: 1399.98px) {
}
