/* Styling for login and signup forms */
/* button[type="submit"] {
  background-color: #004aad !im;
} */
.custom-login-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.custom-login-form p {
  margin-bottom: 20px;
}

.custom-login-form label {
  display: block;
  margin-bottom: 8px;
  color: #004aad;
  font-weight: bold;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 2px solid #004aad;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.custom-login-form input[type="text"]:focus,
.custom-login-form input[type="password"]:focus {
  outline: none;
  border-color: #13aff0;
  box-shadow: 0 0 5px rgba(19, 175, 240, 0.5);
}

.custom-login-form input[type="checkbox"] {
  margin-right: 10px;
}

.custom-login-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #004aad;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-login-form input[type="submit"]:hover {
  background-color: #13aff0;
}

.custom-signup-form .signup {
    display: block;
    text-align: center;
    margin-top: 20px;
    background-color: #004aad;
    color: #fff;
    width: 100%;
    padding:6px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
}
.custom-signup-form .signup:hover{
  background-color: #13aff0;
}
.custom-login-form .signup {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}

.custom-login-form .signup:hover {
  color: #13aff0;
  text-decoration: underline;
}

.custom-signup-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.custom-signup-form p {
  margin-bottom: 20px;
}

.custom-signup-form label {
  display: block;
  margin-bottom: 8px;
  color: #004aad;
  font-weight: bold;
}

.custom-signup-form input[type="text"],
.custom-signup-form input[type="email"],
.custom-signup-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 2px solid #004aad;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.custom-signup-form input[type="text"]:focus,
.custom-signup-form input[type="email"]:focus,
.custom-signup-form input[type="password"]:focus {
  outline: none;
  border-color: #13aff0;
  box-shadow: 0 0 5px rgba(19, 175, 240, 0.5);
}

.custom-signup-form input[type="text"]:invalid,
.custom-signup-form input[type="email"]:invalid,
.custom-signup-form input[type="password"]:invalid {
  border-color: #004aad;
}

.custom-signup-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #004aad;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-signup-form input[type="submit"]:hover {
  background-color: #13aff0;
}

.dihs-multistep {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.dihs-multistep h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.dihs-step-form {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dihs-step-form p {
  margin-bottom: 15px;
}

.dihs-step-form label {
  display: block;
  margin-bottom: 5px;
  color: #004aad;
  font-weight: bold;
}

.dihs-step-form input[type="text"],
.dihs-step-form input[type="tel"],
.dihs-step-form input[type="email"],
.dihs-step-form input[type="date"],
.dihs-step-form input[type="number"],
.dihs-step-form textarea,
.dihs-step-form select,
.dihs-step-form input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px solid #004aad;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  height: 45px;
}

.dihs-step-form input[type="text"]:focus,
.dihs-step-form input[type="tel"]:focus,
.dihs-step-form input[type="email"]:focus,
.dihs-step-form input[type="date"]:focus,
.dihs-step-form input[type="number"]:focus,
.dihs-step-form textarea:focus,
.dihs-step-form select:focus,
.dihs-step-form input[type="file"]:focus {
  outline: none;
  border-color: #13aff0;
  box-shadow: 0 0 5px rgba(19, 175, 240, 0.5);
}

/* .dihs-step-form input[type="text"]:invalid,
.dihs-step-form input[type="tel"]:invalid,
.dihs-step-form input[type="email"]:invalid {
  border-color: #ff4d4d;
} */

.dihs-step-form button,
.dihs-step-form .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #004aad;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.dihs-step-form button:hover,
.dihs-step-form .button:hover {
  background-color: #13aff0;
}

.dihs-step-form .button {
  margin-right: 10px;
}

.dihs-step-form small {
  color: #666;
}

/* 19 AUg */

.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  /* gap: 20px; */
  display: flex;
  flex-direction: column;
}
p.print-slip-text {
  color: #fff;
}
/* end */

@media (max-width: 480px) {
  .dihs-multistep {
    padding: 10px;
  }

  .dihs-step-form {
    padding: 15px;
  }

  .dihs-step-form button,
  .dihs-step-form .button {
    width: 100%;
    margin-bottom: 10px;
  }

  .dihs-step-form p:last-child {
    text-align: center;
  }
}

/* 15 Auhust */
.dihs-table-wrapper {
  overflow-x: auto;
}
.dihs-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 800px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.dihs-table th {
  background-color: #004aad;
  color: white;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  white-space: nowrap; /* No wrap in header */
}
.dihs-table td {
  border: 1px solid #ddd;
  padding: 8px;
  white-space: nowrap; /* No wrap in data cells */
}
.dihs-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.dihs-table tr:hover {
  background-color: #13aff0;
  color: white;
}
.dihs-table a {
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}
.dihs-table a:hover {
  text-decoration: underline;
}
