@font-face {
  font-family: bakh;
  /* src: url(../fonts/byekan.ttf); */
  /* src: url(./static/fonts/byekan.ttf); */
  src: url(../fonts/byekan.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: bakh;
}

body {
  direction: rtl;
}

#form-container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

#form-container > div {
  width: 50%;
  height: 100%;
}

.form-container__detail {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-container__background {
  width: 102%;
  height: 102%;
  top: -1%;
  left: -1%;
  position: absolute;
  transform: rotateY(180deg);
  background-image: url(../images/b.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  /* filter: contrast(0.6) blur(6px); */
  /* filter: contrast(0.6) blur(6px); */
  filter: blur(4px);
}
.form-container__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  border-radius: 0.6rem;
}

.form-container__header {
  display: flex;
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 1rem;
}

.form-container__header > div {
  margin-right: 1rem;
}

.form-container__header > div > h3 {
  color: #2563eb;
}

.form-container__header > div > div {
  color: #1e3a8a;
}

.form-container__header img {
  width: 3rem;
  padding: 0.25rem;
  border-radius: 0.6rem;
  background: dodgerblue;
}

.form-container__hero,
.form-container__header {
  backdrop-filter: blur(8px);
  border-radius: 0.6rem;
  background: #ffffff56;
  z-index: 10;
  min-width: 30%;
  max-width: 70%;
}

.form-container__hero {
  position: relative;
  margin-right: 2rem;
  min-height: 30%;
  padding: 1rem;
}

.form-container__title {
  color: #2563eb;
  font-size: 3rem;
  text-shadow: #0000001a 0px 0px 0px 0px, #0000001a 0px 0px 0px 0px,
    #0000001a 0px 0px 0px 0px, #0000001a 0px 0px 0px 0px,
    #0000001a 0px 1px 3px 0px, #0000001a 0px 1px 2px -1px;
}

.form-container__caption {
  color: #1e3a8a;
}

.form-container__text {
  color: #2563eb;
  width: 87%;
  margin-top: 1.4rem;
  font-size: 18px;
}

.form-container__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* background: #f2f2f3; */
  background: #faffff;
}
form {
  background: #ffffff;
  min-width: 50%;
  min-height: 30%;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,
    0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.form_header {
  margin-bottom: 2rem;
}

.form_input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form_input-container label {
  margin-bottom: 0.5rem;
}
.form_input-container input[type="checkbox"] {
  display: inline;
}

.form_input-container input {
  padding: 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #ebe6e7;
  background: #f9fafb;
}

.form_input-container input:focus, select:focus {
  outline: 2px solid #d4d0d1;
}

select {
  padding: 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid #ebe6e7;
  background: #f9fafb;
  outline: none;
}

select

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="submit"] {
  cursor: pointer;
}

.form_button-container {
  margin-top: 2rem;
  width: 100%;
}

.form_button-container input {
  width: 100%;
  padding: 0.5rem;
  padding-bottom: 0.6rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 0.6rem;
  background: #2563eb;
  color: #ffffff;
}
