body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  overflow-x: hidden;
  height: 100vh;
}
.container {
  display: flex;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
  /* width: 70%; */
}
@media (max-width: 767px) {
    .container{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .banner img{
        width: 100vw;
        object-fit: contain;
        aspect-ratio: 9/4;
    }
    .welcome-msg{
        width: auto !important;
    }
}
.data {
  border-radius: 0 10px 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  width: 100%;
  form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 80%;
    input {
      margin-bottom: 10px;
      padding: 15px;
      width: 100rem;
      text-align-last: left !important;
      outline: none;
      width: 100%;
      margin: 4px;
      border-radius:4px;
      border: 1px solid #000;
      &:focus{
        border: 1px solid rgb(71, 71, 71);
        outline-color: aqua;
        outline-width: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      }
    }
  }
}
.banner {
  border-radius: 10px 0 0 10px;
  img {
    height: 100%;
    border-radius: 10px 0 0 10px;
    object-fit: cover;
  }
}
.inp-container {
  margin: 5px;
  font-weight: bolder;
  text-align: left;
}
.btn {
  padding: 10px 30px;
  background: #001;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}

.welcome-msg{
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    line-height: 15px;
    width: 80%
}