body,
html {
  margin: 0;
  background-color: #262626;
  position: relative;
  background-image: url(./assets/img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
  min-width: 100%;
}

body {
  min-height: 100%;
  overflow: auto;
}

body,
html,
button,
input,
textarea,
textfield,
select {
  font-family: Quatro, verdana;
}

button:disabled {
  cursor: default !important;
  opacity: 0.3;
}

a:hover,
a:link,
a:active,
a:focus,
a:visited {
  text-decoration: none !important;
}

.spacer {
  height: 30px;
}

.miniSpacer {
  height: 14px;
}

.buttonSpacer {
  height: 34px;
}

.line {
  height: 1px;
  width: 100%;
  background: #e6e6e6;
}

.bold {
  font-weight: bold !important;
}

.content {
  margin: 0 auto;
  min-height: 100vh;
  width: 815px;
  box-sizing: border-box;
  background: #f0f1f3;
  box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.25);
  padding: 43px 0 0 0;
}

.greenLink,
.greenLink:visited,
.greenlink:focus {
  outline: none;
  color: #00bb00;
}

.purpleLink,
.purpleLink:visited,
.purpleLink:focus {
    outline: none;
    color: #FF0070;
}


.content form {
  padding: 30px 87px 0 88px;
}

.content form h2 {
  font-style: normal;
  font-weight: 900;
  font-size: 58px;
  line-height: 91%;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #cccccc;
  margin-block-start: 0;
  margin-block-end: 0;
}

.content form h4 {
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 141%;
  letter-spacing: 0.03em;

  margin-block-start: 0;
  margin-block-end: 0;
  margin: 16px 0 10px 0;
}

.green {
  color: #00bb00;
}

.purple {
    color: #FF0070;
}

.greenHeader {
  background: linear-gradient(90deg, #00ba00 0%, #009fda 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.purpleHeader {
  background: linear-gradient(90deg, #8d00cc 0%, #c9009c 59.9%, #ff0070 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.textBlock {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.053em;
  color: #666666;
}

.textBlock .header {
  font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 132%;
  letter-spacing: 0.016em;
  color: #666666;
}

label {
  position: relative;
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.053em;
  color: #262626;
}

label input {
  margin: 14px 0 30px 0;
  padding: 13px 47px 13px 15px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.053em;
  color: #262626;
  border: none;
  border-radius: 5px;
  background: #ffffff;
  box-sizing: border-box;
}

label .inputIcon {
  position: absolute;
  top: 51px;
  right: 18px;
  display: block;
  height: 15px;
  width: 14px;
  background: url(./assets/img/inputIcon.svg) no-repeat center;
  cursor: pointer;
}

label .popUp {
  display: none;
  width: 410px;
  position: absolute;
  top: 22px;
  right: -432px;
  border-radius: 5px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.053em;
  color: #666666;
  box-sizing: border-box;
}

label input:hover,
label input:focus {
  outline: none;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}

form ul {
  padding-inline-start: 20px;
  margin-block-start: 0;
  margin-block-end: 0;
}

form ul li {
  list-style-image: url(./assets/img/list.svg);
  margin: 9px 0;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 143%;
  color: #666666;
}

form button {
  margin: 0 auto;
  padding: 14.5px 48px 14.5px 20px;
  background: url(./assets/img/buttonBg.svg) center right 14px no-repeat,
    #666666;
  border-radius: 50px;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

form .greenButton {
    background: url(./assets/img/buttonBg.svg) center right 14px no-repeat,
    linear-gradient(90deg, #00ba00 0%, #009fda 100%);
}

form .purpleButton {
    background: url(./assets/img/buttonBg.svg) center right 14px no-repeat,
    linear-gradient(90deg, #8D00CC 0%, #C9009C 59.9%, #FF0070 100%);
}

form button:hover,
form button:focus {
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
  outline: none;
}

