/*

    Title: Forms
    Author: QBIT
    Date: 31/08/2025

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

*/

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

input[type="text"],input[type="password"],textarea,select {
  width: 100%;
  border: solid 1px #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,input[type="password"]:hover,textarea:hover,select: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;
}

input[type="submit"] {
  margin-top: 1.25rem;
}

/* Media queries */
@media (max-width: 64em) 
{

	/* Form sytles */

}