/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.container-content {
  display: flex;
  align-items: center;
}

.container-justify {
  display: flex;
  justify-content: center;
}

.next-btn {
  background-color: #FA6E00;
  color: #FFF;
  font-weight: 600;
  border: none;
  height: fit-content;
  padding: 10px 30px;
  border-radius: 50px;
}
.next-btn:hover {
  background-color: #fab988;
}

.back-btn {
  background-color: #ACACAC;
  color: #FFF;
  font-weight: 600;
  border: none;
  height: fit-content;
  padding: 10px 30px;
  border-radius: 50px;
}
.back-btn:hover {
  background-color: #cccccc;
}

.content-title {
  padding-top: 80px;
}

h1 {
  font-size: 1.5rem;
  color: #FA6E00;
  margin: 10px 0;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.2rem;
}

label, p {
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  cursor: pointer;
}

ul {
  margin-left: 50px;
}

ul li {
  list-style-position: inside;
  text-indent: -1.7rem;
  padding-left: 1rem;
  font-size: 1.2rem;
  margin: 6px 0;
}

input[type=text], [type=number], [type=email], [type=username], [type=password], [type=tel] {
  display: block;
  margin: 1vh 0;
  height: 34px;
  border: solid 1px;
  border-color: #E0E0E0;
  border-radius: 4px;
  outline: none;
  padding-left: 10px;
  font-size: 20px;
}
input[type=checkbox] {
  margin-right: 10px;
}
input[type=checkbox]:hover {
  cursor: pointer;
}
input[type=text]:focus, [type=number]:focus, [type=email]:focus, [type=password]:focus, [type=tel]:focus {
  box-shadow: 0 0 5px #FF9700;
  border: 1px solid #FF9700;
}
input[type=text]::placeholder, [type=number]::placeholder, [type=email]::placeholder, [type=password]::placeholder, [type=tel]::placeholder {
  font-size: 14px;
}
textarea {
  border: solid 1px;
  border-color: #E0E0E0;
  border-radius: 4px;
  outline: none;
  font-size: 1.2rem;
  padding: 5px;
}
textarea:focus {
  box-shadow: 0 0 5px #FF9700;
  border: 1px solid #FF9700;
}

.numberButton {
  background-color: #FF9700;
  color: white;
  font-weight: 600;
  border: none;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  margin-top: 5px;
}
.numberButton:hover {
  background-color: #fab988;
}

button {
  background-color: transparent;
  border: none;
  color: #FF9700;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

button:hover {
	filter: brightness(0.9);
	cursor: pointer;
}

dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: none;
	background-color: transparent;
}

dialog::backdrop {
	background-color: rgba(0, 0, 0, 0.6);
}

iframe {
	  border: none;
}

.dialog-container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

/*# sourceMappingURL=style.css.map */
