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

body {
  /* background: linear-gradient(135deg, blue, gold); */
  background-color: aliceblue;
  height: 100vh;
  display: flex;
  overflow-y: hidden;
  justify-content: center;
  align-items: center;
}

input {
  width: 70%;
  height: 45px;
  border: none;
  outline: none;
  border: 2px solid rgb(231,130,50);
  font-weight: 600;
  border-radius: 20px;
  padding-left: 20px;
}

.bg {
  background-color:rgb(37,43,65);
  /* background-image: url("/public/image/undraw_sign-up_z2ku.png"); */
  height: 600px;
  padding-top: 150px;
  font-size: 20px;
  border-radius: 20px 0 0 20px;
  width: 400px;
}

.bg2 {
  background-color: black;
  height: 600px;
  border-radius: 0 20px 20px 0;
  width: 400px;
}

.w-100.d-flex {
  display: flex;
  flex-direction: row;
  height: 100vh;
  align-items: stretch;
}

.bg,
.bg2 {
  width: 400px;
  height: 600px;
}

.bxi {
  position: absolute;
  right: 620px;
  padding-top: 10px;
  font-size: 20px;
}

#b {
  border: 2px solid rgb(231,130,50);
  width: 50px;
  height: 50px;
  border-radius: 12%;
  padding-top: 10px;
  color: white;
  cursor: pointer;
}

::placeholder {
  font-size: 15px;
}

.word1 {
  font-size: 16px;
}





/* @media (max-width: 900px) {
  .bg, .bg2 {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 992px) {
  .bg{height: 150px;
      border-radius:  20px 20px 0 0;
      padding-top: 20px;
      margin-bottom:-160px;
  } 
  
  .bg2 {
    height: 550px;
    padding-top: 40px;
    font-size: 18px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 0px;
  }
  input {
    width: 60%;
    font-size: 16px;
  }
} */

@media (max-width: 768px) {

  .bg,
  .bg2 {
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
    height: auto;
    padding-top: 30px;
  }

  .bg2 {
    border-radius: 0 0 20px 20px;
    margin-top: 0;
    height: 600px;
  }

  .w-100.d-flex {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .bg {
    height: 120px;
    border-radius: 20px 20px 0 0;
    /* margin-bottom: px !important; */
  }

  input {
    width: 100%;
    font-size: 15px;
  }
}


@media (max-width: 576px) {

  .bg,
  .bg2 {
    width: 100% !important;
    border-radius: 20px 20px 0 0 !important;
    margin-bottom: 0 !important;
    /* height: auto !important; */
    padding-top: 30px !important;
  }

  .bg2 {
    border-radius: 0 0 20px 20px !important;
    margin-top: 0 !important;
    height: 580px;
  }

  .w-100.d-flex {
    flex-direction: column !important;
    height: auto !important;
    min-height: 100vh;
  }

  .bg {
    height: 150px;
    border-radius: 20px 20px 0 0;
    margin-bottom: -150px;
  }

  /* .bg2 {
    height: 560px;
    padding-top: 20px;
    font-size: 16px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 0px;
  } */
  input {
    width: 100%;
    font-size: 15px;
  }

  .bxi {
    right: 20px;
    font-size: 18px;
  }

  .input-icon-container .bxi {
    right: 10px;
    font-size: 18px;
  }
}


@media (max-width: 370px) {
  .bg {
    font-size: 8px;
    padding-top: 20px;
    height: 120px;
    margin-bottom: -160px;
  }

  .word1 {
    font-size: 14px;
  }

  .word2 {
    font-size: 14px;
  }

  .bg2 {
    font-size: 10px;
    padding-top: 10px;
    height: 570px;
    margin-bottom: 0px;
  }

  input {
    font-size: 50px;
  }

  .input-icon-container .bxi {
    right: 6px;
    font-size: 16px;
  }

}

.input-icon-container {
  position: relative;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 15px;
}

.input-icon-container input {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}


.input-icon-container .bxi {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: black;
  pointer-events: none;
}

.bxi {
  position: static;
  right: auto;
  padding-top: 0;
  font-size: inherit;
}

svg {
  width: 40px;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
  display: none;
}

circle {
  fill: none;
  stroke: black;
  stroke-width: 5;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}