/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

 input::-moz-placeholder {
    color: #00738A;
  }
  input:-moz-placeholder {
    color: #00738A;
    font-size: 14px !important;
  }
  *::-webkit-input-placeholder {
    color: #00738A;
    font-size: 14px !important;
  }
  *:-ms-input-placeholder {
    color: #00738A;
    font-size: 14px !important;
  }
  *:-moz-placeholder {
    color: #00738A;
    font-size: 14px !important;
  }

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


body {
	background: linear-gradient(0deg, rgba(0,48,68,1) 0%, rgba(1,48,68,1) 100%);
	font-family: 'Roboto',sans-serif;
	min-height: 100vh;
}

.wrapper {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}



.login-form {
	color: #fff;
	text-align: center;
}


.login-form h3 {
	opacity: 0.8;
	margin-bottom: 1.5rem;
}


.toggle-items .input-field:not(.active) {
	display: none;
}

.input-field label {
	margin-bottom: 8px;
	display: block;
	font-size: 14px;
}

.input-field {
	min-width: 300px;
	margin-bottom:15px;
}

.input-field select,
.input-field input {
	background-color: #194757;
	border: none;
	border-radius: 5px;
	border: 1px solid #00738B;
	color: #80BAC5;
	padding: 15px;
	display: block;
	width: 100%;
	box-sizing: border-box;
}

.button {}
.button-submit {
	background-color: #03E077;
	color: #fff;
	border-radius: 5px;
	width: 100%;
	display: block;
	padding: 15px 10px;
	text-align: center;
	font-weight: bold;
	border: 0;
	box-sizing: border-box;
}

.button-submit[disabled] {
	opacity: 0.5;
	cursor: wait;
}

.success-message h2 {
	margin-bottom: 1.5rem;
}
.success-message a {
	text-decoration: none;
	font-weight: 500;
}