/* ALL BODY CSS */
body a {
  text-decoration: none;
  color: #000;
}
/* HEADER / IMAGE */
header .head-img {
  height: 300px;
  overflow: none;
}
header .head-img img {
  height: 300px;
  width: 100%;
}

/* HEADER TITLE */
header .tfrm-head {
  text-align: center;
  margin-top: 30px;
}
header .tfrm-head h1 {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
header .tfrm-head h5 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
/* ============================================================ */

/* FORM - ONLY MAIN */
/* WRAP */

.tfrmm .tfrm-wrap {
  margin: 0 auto;
  max-width: 600px;
  padding: 30px 0px 30px 80px;
  border: 1px solid #000;
  border-radius: 10px;
}
/* RESPONSIVE WRAP */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .tfrmm .tfrm-wrap {
    padding: 30px 0px 30px 60px;
  }
}
@media screen and (max-width: 575px) {
  .tfrmm .tfrm-wrap {
    padding: 30px 0px 30px 50px;
  }
}

/* DROPDOWN & LABEL*/
.tfrmm form .form-label {
  font-weight: bold;
}
.tfrmm form .form-sel {
  width: 90%;
  padding: 10px;
  background-color: #e9e7e781;
  border-radius: 10px;
  border: 1px solid gray;
  cursor: pointer;
}
.tfrmm form option {
  padding: 10px;
}

/* SUBMIT BUTTON */
.tfrmm .row-wrp1 {
  text-align: center;
  width: 90%;
}
.tfrmm form .frmbtn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* ============================================================= */

/* FORM - ALL */
.tfrmm,
.tfrm {
  padding: 20px 0px;
  padding-left: 20px;
}
.tfrmm form input:focus,
.tfrmm form select:focus,
.tfrm form input:focus,
.tfrm form select:focus {
  outline: none;
}
.tfrmm form input:focus-visible,
.tfrmm form select:focus-visible,
.tfrm form input:focus-visible,
.tfrm form select:focus-visible {
  border: 1px solid blue;
}
/* WRAP */
.tfrm .tfrm-wrap {
  padding: 20px 10px;
  border: 1px solid #000;
  border-radius: 10px;
}
/* INPUT & LABEL */
.tfrm form .form-label {
  margin-bottom: 10px;
  font-weight: bold;
}
.tfrm form .form-input {
  width: 100%;
  padding: 10px;
  background-color: #e9e7e781;
  border-radius: 10px;
  border: 1px solid gray;
}
/* SUBMIT BUTTON */
.tfrmm form .frmbtn-wrap,
.tfrm form .frmbtn-wrap {
  text-align: center;
}
.tfrm form .frmbtn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tfrmm form .frmbtn:hover,
.tfrm form .frmbtn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
