@font-face {
  font-family: "DM Sans";
  font-display: swap;
  src:
	url("DMSans-Regular.woff2") format("woff2"),
	url("DMSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DM Sans";
  font-display: swap;
  src:
	url("DMSans-SemiBold.woff2") format("woff2"),
	url("DMSans-SemiBold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "DM Sans";
  font-display: swap;
  src:
	url("DMSans-Bold.woff2") format("woff2"),
	url("DMSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

html,
body {
	font-family: "DM Sans", Arial, sans-serif;
	background-color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

h1,
h2 {
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
	color: black;
	text-align: center;
}

h1 {
	font-size: 50px;
	font-weight: 600;
	line-height: 107%;
}

h2 {
	font-size: 34px;
	font-weight: normal;
	line-height: 133%;
	text-transform: uppercase;
}

h3 {
	margin: 20px 0;
	padding: 0;
	font-size: 22px;
	font-weight: normal;
	line-height: 133%;
	text-transform: uppercase;
}

ul {
	margin: 0 0 40px;
}

input {
	display: block;
	width: calc(50% - 5px);
	height: 40px;
	margin-bottom: 10px;
	padding: 0 16px;
	font-size: 14px;
	border: none;
	border-radius: 100px;
}

#job,
#phone {
	width: 100%;
}

#wrapper {
	width: 720px;
	max-width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
}

.text-container {
	color: black;
	font-size: 18px;
	line-height: 120%;
}

.box-container {
	padding: 30px 20px 20px;
	border-radius: 20px;
	background-color: #F8F8F8;
}

#form-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 40px;
	background-color: #FBF0E8;
}

#form-container h3 {
	width: 100%;
	margin: 0 0 10px;
	text-transform: none;
}

.input-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: calc(50% - 5px);
	margin-bottom: 15px;
}

.input-container select {
	width: 100%;
	height: 40px;
	padding: 0 16px;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	border: none;
	border-radius: 100px;
	background-color: white;
	background-image: url("data:image/svg+xml,%3Csvg class='w-64 h-64' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='currentColor'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
	background-position: calc(100% - 15px) center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.style-button {
	cursor: pointer;
	opacity: 0.7;
	display: inline-block;
	width: calc(50% - 5px);
	height: 40px;
	color: white;
	font-size: 14px;
	line-height: 38px;
	text-align: center;
	border: 1px solid white;
	border-radius: 100px;
}

.style-button:hover {
	opacity: 1;
}

.style-button.selected {
	pointer-events: none;
	opacity: 1;
	color: black;
	font-weight: 500;
	background-color: white;
}

#link-button {
	cursor: pointer;
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 20px;
	text-decoration: none;
}

#link-button:not([href]),
#link-button[href=""] {
	display: none;
}

#link-button svg {
	display: inline-block;
	width: auto;
	height: 18px;
	margin: -2px 2px 0 0;
	vertical-align: middle;
}

#link-button svg path {
	fill: #000000;
}

#signature-container {
	margin-bottom: 20px;
}

#signature-wrapper {
	overflow: scroll;
}

#signature {
	min-width: 390px;
	padding: 20px;
	background-color: white;
}

.signature-template {
	display: none;
}

#copy-container {
	margin-bottom: 60px;
	text-align: center;
}

#copy-button {
	cursor: pointer;
	display: inline-block;
	padding: 8px 16px;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid black;
	border-radius: 100px;
}

#copy-button:hover {
	color: white;
	background-color: black;
}

#copy-button:hover svg path {
	fill: white;
}

#copy-button svg {
	display: inline-block;
	width: auto;
	height: 20px;
	margin-right: 5px;
	vertical-align: middle;
}

#copy-button svg path {
	fill: #000000;
}

#copied-icon {
	display: none;
	width: auto;
	height: 30px;
	margin-left: 10px;
	vertical-align: middle;
}

#copy-container.copied #copied-icon {
	display: inline-block;
}