/* 
 Theme Name:   Child Theme
 Theme URI:    
 Description:  
 Author:       Santhosh Sandy
 Author URI:   https://santhoshsandy.in
 Template:     twentytwentyfour
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/

/* Style for input fields */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff; /* Background color can be adjusted */
  color: #333; /* Text color can be adjusted */
}


/* Style for buttons */
button,
input[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
  background-color: #45a049;
}

/* Style for form container (adjust as needed) */
.form-container {
  max-width: 400px;
  margin: auto;
}

/* Additional styles for better responsiveness (optional) */
@media screen and (max-width: 600px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea,
  select,
  button,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }
}
