* {
  box-sizing: border-box;
  /* overflow-x: hidden; */
}

body {
  font: 90%/1.5 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Helvetica,
    Arial, sans-serif;
}

.form_item {
  display: grid;
  grid-template-columns: 45% auto;
}
.form_grid_item {
  justify-items: center;
  margin-left: 2px;
  margin-right: 2px;
}
.Customer-id {
  display: grid;
  grid-template-columns: 90% auto;
}
.Customer-id input {
  width: 100%;
}
.details {
  color: white;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
}

.form-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.form-item-Customer {
  padding: 7px;
  justify-items: center;
  /* margin: 10px; */
}
.form-item input,
select {
  width: 100%;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid black;
}
.form-item {
  padding: 7px;
}
.form-item-Customer input,
select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid black;
}

input[type="submit"] {
  /* height: 3rem; */
  width: fit-content;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 10px;
}
th,
td {
  text-align: center;
}

select {
  border-radius: 10px;
}

.Customer-details {
  background-image: linear-gradient(to right, #00008b 0%, #2575fc 100%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px;
}
.kyc-box {
  background-image: linear-gradient(to right, #00008b 0%, #2575fc 100%);
  padding: 5px 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px;
}
.top-head-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-head {
  background-image: linear-gradient(135deg, #00008b 10%, #9708cc 100%);
  color: white;
  border-radius: 10px;
  padding: 6px 50px;
  margin-bottom: 21px;
  width: fit-content;
}
.heading h3 {
  color: white;
}

.btn-grad {
  background-image: linear-gradient(
    to right,
    #00008b 0%,
    #0b8793 51%,
    #360033 100%
  );
  /* margin: 10px; */
  /* padding: 15px 45px; */
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  /* border-radius: 10px; */
  display: block;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn-grad-submit {
  background-image: linear-gradient(135deg, #00008b 10%, #9708cc 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  /* border-radius: 10px; */
  display: block;
}

.btn-grad-submit:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.change_display {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .form-box {
    display: grid;
    grid-template-columns: auto;
  }
  .form-item-Customer input,
  select {
    width: 100%;
  }
}
