/* ===== Google Font Import - Poppins ===== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  margin: 0px;
  padding: 0px;
}

body {
  min-height: 100vh;
  background: #edf5f5;
  display: grid;
  place-items: center;
}

table,
th,
td {
  border: 1px;
}

th {
  background-color: #428883;
  padding: 15px;
  text-align: center;
  color: #fee785;
}

td {
  padding: 8px;
  text-align: center;
}

th:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #fff;
}

th:nth-child(12) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
}

td:nth-child(1) {
  border-radius: 10px;
  text-align: center;
  background-color: #428883;
  color: #fff;
}

td:nth-child(3),
td:nth-child(4) {
  text-align: center;
  color: #428883;
}

tr .horizontal-line {
  border-top: 1px solid #000;
}

td {
  padding: 3px;
  text-align: center;
}

td a {
  display: inline-block;
  padding: 6px 12px;
  background-color: #fee785;
  border-radius: 10px;
  color: #428883;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

td a:hover {
  background-color: #fee785;
}

.containerlist {
  position: relative;
  width: 100%;
  margin: 0 15px;
  background-color: #edf5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container {
  position: relative;
  max-width: 1080px;
  width: 100%;
  height: auto;
  padding: 30px;
  margin: 0 15px;
  background-color: #edf5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container header {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #007d77;
  display: flex;
  justify-content: center;
}

.container form {
  margin-top: 16px;
  min-height: 350px;
  background-color: #edf5f5;
  overflow: hidden;
}

.container form .form {
  background-color: #edf5f5;
  transition: 0.3s ease;
}

.container form .form.second {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

form.secActive .form.second {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

form.secActive .form.first {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

.container form .title {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #007d77;
}

.container form .fields {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="password"],
input {
  text-align: center;
}

form .fields .input-field {
  display: flex;
  flex-direction: column;
  margin: 4px 0;
  color: #007d77;
  height: 80px;
  width: 500px;
}

.input-field label {
  font-size: 12px;
  font-weight: 500;
  color: #007d77;
}

.input-field input,
select,
textarea {
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #007d77;
  border-radius: 15px;
  border: 1px solid #007d77;
  height: 80px;
  width: 500px;
  margin: 8px 0;
  background-color: #edf5f5;
  font-size: 20px;
}

.input-field input::placeholder,
.input-field select::placeholder {
  color: #007d77;
  text-align: center; /* Center the placeholder text */
}

.input-field input:focus,
.input-field select:focus {
  color: #007d77;
}

.input-field select,
.input-field input[type="date"] {
  color: #007d77;
  height: 80px;
  width: 500px;
  font-size: 17px;
}

.input-field input[type="date"]:valid {
  color: #007d77;
}

.container form button,
.backBtn {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 500px;
  border: 1px solid #aaa;
  outline: none;
  color: #edf5f5;
  border-radius: 15px;
  margin: 25px 0;
  font-size: 30px;
  background-color: #007d77;
  /*transition: all 0.3s linear;*/
  cursor: pointer;
  /*left: 50%;
    -ms-transform: translate(-50%, -0%);
    transform: translate(-50%, -0%);*/
}

.container form .btnText {
  font-size: 14px;
  font-weight: 400;
}

form button:hover {
  background-color: #428883;
}

form button i,
form .backBtn i {
  margin: 0 6px;
}

form .backBtn i {
  transform: rotate(180deg);
}

form .buttons {
  display: flex;
  align-items: center;
}

form .buttons button,
.backBtn {
  margin-right: 14px;
}

@media (max-width: 750px) {
  .container .responsive {
    height: 1920;
    width: 1080;
  }

  .container form {
    overflow-y: scroll;
  }

  .container form::-webkit-scrollbar {
    display: none;
  }

  form .fields .input-field {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 550px) {
  form .fields .input-field {
    width: 100%;
  }
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
