@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
}

html {
  width: auto;
  min-height: 100vh;
  background-color: #ffffff;
}

.nav-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 2rem;
}

.logo-image {
  width: 8rem;
}

#navbar {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-height: 80px;
  padding: 1.2rem;
  position: fixed;
  background-color: #ffb75e;
  background: #ffb75e; /* fallback for old browsers */
  background: rgba(59, 173, 227, 1);
}
.navbar_button {
  margin: 0 0.36rem;
  max-height: 20px;
}
a {
  color: black;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Lobster", cursive;
  border: none;
  background-color: transparent;
  text-decoration: none;
}
button {
  color: oldlace;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Lobster", cursive;
  border: none;
  background-color: transparent;
}

.image-parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: max-content;
  background-color: #212121;
  padding-top: 6rem;
  margin-bottom: 1rem;
  background-size: 300% 300%;
  background-image: linear-gradient(
    -45deg,
    rgba(59, 173, 227, 1) 0%,
    rgba(87, 111, 230, 1) 25%,
    rgba(152, 68, 183, 1) 51%,
    rgba(255, 53, 127, 1) 100%
  );
  animation: AnimateBG 8s ease infinite;
}

@keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.image {
  width: 45%;
  height: max-content;
  border: #48b1bf solid 0.36rem;
  display: inline-flex;
}

h1 {
  color: white;
  font-size: 4rem;
  margin-top: -0.5rem;
}

h2 {
  color: rgb(0, 0, 0);
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.login-parent {
  width: 100%;
  height: max-content;
  background-color: #f5ecd9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

.label {
  width: 15rem;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #212121;
}

.input {
  width: 100%;
  height: 2.5rem;
  border: #212121 solid 0.1rem;
  border-radius: 0.36rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #212121;
  z-index: 1;
  background-color: #f5ecd9;
}

.label-par {
  display: flex;
  width: max-content;
  background-color: #f5ecd9;
  align-items: center;
  margin-bottom: 1rem;
}

.input-add {
  width: 100%;
  height: 4.5rem;
  border: #212121 solid 0.1rem;
  border-radius: 0.36rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #212121;
  background-color: #f5ecd9;
}

input[type="radio"] {
  appearance: none;
}

input[type="radio"] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
}

input[type="radio"] + label::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  border: 1px solid #686de0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s;
}

input[type="radio"] + label::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1;
  border: 1px solid #686de0;
  background: #686de0;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}

input[type="radio"]:checked + label::after {
  opacity: 1;
}

.radio-par {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #f5ecd9;
  padding-top: 1.5rem;
  margin-right: 16rem;
}

.radio-lab {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #212121;
}

/* check-box */
.cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.cbx:not(:last-child) {
  margin-right: 6px;
}
.cbx:hover {
  background: rgba(0, 119, 255, 0.06);
}
.cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}
.cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}
.cbx:hover span:first-child {
  border-color: #686de0;
}
.inp-cbx {
  position: absolute;
  visibility: hidden;
}
.inp-cbx:checked + .cbx span:first-child {
  background: #686de0;
  border-color: #686de0;
  animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@-moz-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
@-o-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

.max-w {
  width: max-content;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #000000;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.checkbox-text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  color: #223254;
}

.checkbox-parent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #f5ecd9;
  padding-top: 1.5rem;
}
/* agshjasfg */
.custom-select {
  position: relative;
  font-family: Arial;
  margin-right: 6rem;
  height: max-content;
  margin-top: 1.5rem;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #4e4e54;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #4e4e54;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.gender-flex {
  display: flex;
  gap: 0.5rem;
}
.flex-of-drop {
  display: flex;
}

.button-par {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.submit {
  padding: 1rem;
  background-color: #686de0;
  border-radius: 1rem;
}

.reset {
  padding: 1rem;
  background-color: #eb6a08;
  border-radius: 1rem;
}

.p-div {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #f5ecd9;
}

.p-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  color: #223254;
  text-align: center;
  background-color: #f5ecd9;
}

.hero-parent {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #d6ed00;
}

.top-parent {
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: center;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
}

table.blueTable {
  border: 2px solid #1c6ea4;
  background-color: #eeeeee;
  width: 1000px;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td,
table.blueTable th {
  border: 2px solid #aaaaaa;
  padding: 3px 2px;
}
table.blueTable tbody td {
  font-size: 13px;
}
table.blueTable tr:nth-child(even) {
  background: #d0e4f5;
}
table.blueTable thead {
  background: #1c6ea4;
  background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1c6ea4 100%);
  background: -webkit-linear-gradient(
    top,
    #5592bb 0%,
    #327cad 66%,
    #1c6ea4 100%
  );
  background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1c6ea4 100%);
  border-bottom: 2px solid #444444;
}
table.blueTable thead th {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  border-left: 2px solid #d0e4f5;
}
table.blueTable thead th:first-child {
  border-left: none;
}

table.blueTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background: #d0e4f5;
  background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #d0e4f5 100%);
  background: -webkit-linear-gradient(
    top,
    #dcebf7 0%,
    #d4e6f6 66%,
    #d0e4f5 100%
  );
  background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #d0e4f5 100%);
  border-top: 2px solid #444444;
}
table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a {
  display: inline-block;
  background: #1c6ea4;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 5px;
}

.tab-par {
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer {
  width: 100%;
  background: rgba(59, 173, 227, 1);
  display: flex;
  padding-top: 2rem;
  padding-bottom: 2rem;
  justify-content: center;
  gap: 2rem;
}
