/* Reset CSS
======================================== */
*{
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
html, body,
header, footer,
section, article, aside, menu, nav,
div, span,
h1, h2, h3, h4, h5, h6,
p, ol, ul, li, a, strong, b, i, s, address,
form, label,
iframe, embed, audio{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html{
	padding: 0 !important;
	scrollbar-width: none;
}
::selection{
	color: black;
	background-color: white;
}
::-webkit-scrollbar{
	display: none;
}
:focus{
	outline: none !important;
}
:focus::-ms-value{
	color: inherit;
	background-color: none;
}
::-moz-focus-inner{
	border: none !important;
}

/* Basic Styles
======================================== */
#preview-bar-iframe,
#admin-bar-iframe{
	display: none !important;
}

body{
  width: 100vw;
  height: 100%;
  margin: auto;
  font-family: Helvetica, sans-serif;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: white;
  background-color: black;
  overflow-x: hidden;
}

#wrapper{
  position: absolute;
  width: 100vw;
  height: 100%;
  padding: 40px 40px 0;
  display: grid;
  row-gap: 40px;
  grid-template-rows: min-content min-content 1fr;
  align-items: center;
}

form{
  height: 100%;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-rows: 1fr min-content;
  row-gap: 80px;
  align-items: center;
}
._form_element{
  display: grid;
  grid-auto-rows: min-content;
  row-gap: 20px;
}

input,
button{
	height: auto;
	display: inline-block;
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5 !important;
	color: white;
	background: none;
	background-color: transparent;
	border: none;
	-webkit-border-radius: 0;
		-moz-border-radius: 0;
			  border-radius: 0;
	-webkit-appearance: none;
		-moz-appearance: none;
			  appearance: none;
}
input{
	width: 100%;
	max-width: 320px;
	margin: 0 auto 5px !important;
	padding: 0 5px 5px !important;
	text-align: center;
	border-bottom: 1px solid #616161;
	-webkit-user-select: text;
		-moz-user-select: text;
		 -ms-user-select: text;
			  user-select: text;
}
input::-webkit-contacts-auto-fill-button {
	 visibility: hidden;
	 display: none !important;
	 pointer-events: none;
	 position: absolute;
	 right: 0;
}
button{
	 width: fit-content;
	width: -moz-fit-content;
	margin: 0;
	padding: 0;
	 grid-row: 2;
	 cursor: pointer;
}
button:disabled{
  pointer-events: none;
}
button:not(.submited):disabled{
  color: #616161;
}

::-webkit-input-placeholder,
::placeholder{
	font-family: inherit;
	line-height: 1.5 !important;
	color: #616161;
	opacity: 1;
	 -webkit-transition: color .2s linear;
				transition: color .2s linear;
}
.desktop :hover::-webkit-input-placeholder,
.mobile :active::placeholder{
	color: white;
}
._error-inner,
.form-message{
	font-size: 10px;
	 color: #616161;
}

a{
  color: white;
}
