/* Style inputs with type="text", select elements and textareas */
input[type="text"],
input[type="email"] {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

.note {
  height: 60px;
}
@media (max-width: 768px) {
  .note {
    height: 80px;
    display: inline-flex;
    margin-bottom: 20px;
  }
}

.customSwalBtn {
  background-color: #022433;
  border: 1px sold #022433;
  color: white;
}

.customSwalBtn:hover {
  background-color: #fff;
  border: 1px sold #fff;
  color: #022433;
}

label {
  margin-top: 6px;
  margin-bottom: 6px;
}

.input-label {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#submit:hover {
  background-color: #fff !important;
  color: #022433 !important;
  border: 1px solid #022433 !important;
}

/* Hide the browser's default checkbox */
.input-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 0.4rem;
  border: 0.08rem solid #bbb;
}

/* When the checkbox is checked, add a blue background */
.input-label input:checked ~ .checkmark {
  background-color: #022d40;
}

/* Style the checkmark/indicator */
.input-label input:checked ~ .checkmark:after {
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: white;
  font-size: 90%;
  margin-left: 0.25rem;
  content: "\f00c";
}

/* Style the submit button with a specific background color etc */
.submit {
  background-color: #ddd;
  color: #022433;
  padding: 12px 20px;
  border: 1px solid #022433;
  border-radius: 12px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
.submit:hover {
  background-color: #fff !important;
  color: #022433 !important;
  border: 1px solid #022433 !important;
}

.topic {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.required:after {
  content: " *";
  color: red;
}

.success {
  color: green;
}

.error {
  color: red;
}

.box {
  margin-top: 5px;
  margin-bottom: 5px;
}

.hr-sectioned {
  margin: 2.5rem 0;
}
