/*
    Title: Forms
    Author: QBIT
    Date: 09/10/2025

    File path: ../../../../uploads/
*/

/* Form styles */
form {
  background-color: #fff;
  border-radius: 0.2rem;
  padding: 1.25rem;
}

input[type="text"],textarea,select,input[type="password"] {
  width: 100%;
  border: solid 0.0625rem #f0f0f0;
  background-color: #f0f0f0;
  border-radius: 0.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  color: #333;
  cursor: pointer;
  appearance: none;
  margin-bottom: 0.3125rem;
  padding: 0.9375rem;
}

input[type="text"]:hover,textarea:hover,select:hover,input[type="password"]:hover {
  background-color: #f8f8f8;
  transition: background-color 0.3s ease-in;
}

select {
  color: #333;
}

textarea {
  height: 8.0rem;
  min-height: 4.0rem;
  resize: vertical;
}

label {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.required {
  color: red;
}

::placeholder {
  color: #ccc;
}

/* Media queries */
@media (max-width: 48rem) 
{

  /* Form sytles */

}
