/*
Theme Name: ISarva Theme
Theme URI: https://isarvait.com
Description: ISarva Theme is simple theme mainly used in Elementor based theme
Version: 1.0
*/

* {
  margin:0px;
  padding:0px;
}

body {
  margin: 0 auto;
  box-sizing: border-box;
}
a[href="https://isarvait.com/"]:hover {
    color: #FF5E15! important;
}
/* Importing Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&display=swap');

/* Form Container */
.wpcf7 {
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif; /* Applying Mulish font */
}

.wpcf7 label {
  display: block;
  margin-bottom: 15px;
  font-weight: normal;
}

.wpcf7 span {
  display: block;
  margin-bottom: 5px;
}

/* Form Title */
.wpcf7 h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Form Fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.wpcf7 textarea {
  height: 120px; /* Corrected syntax for setting height */
  resize: vertical;
}

/* Form Submit Button */
.wpcf7 input[type="submit"] {
  background-color: #FF5E15;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
  transition: background-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #001659;
}

/* Error Messages */
.wpcf7 .wpcf7-not-valid-tip {
  color: red;
}

/* Success Message */
.wpcf7 .wpcf7-mail-sent-ok {
  color: #4CAF50;
  font-weight: bold;
}

