/*

   Title: Forms
   Author: QBIT
   Date: 11/10/2024

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

*/

/* Form styles */
input[type="text"],select,textarea,input[type="number"] {
	width: 100%;
	border: solid 1px #f0f0f0;
	background-color: #f0f0f0;
	border-radius: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 1.0em;
	color: #333;
	margin-bottom: 5px;
	padding: 15px;
}

select {
	margin: 0;
}

textarea {
	height: 150px;
}

input[type="submit"] {
	border-radius: 0;
	cursor: pointer;
	margin-top: 10px;
}

::placeholder {
	color: #ccc;
}

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

.required {
	font-style: normal;
	color: #f44336;
}

/* Checkbox styles */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

.container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.container input:checked ~ .checkmark {
  background-color: #99cc33;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.container input:checked ~ .checkmark:after {
  display: block;
}

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



}