:root {
  --white: #fff;
  --black: #000;
  --grey: #696969;
  
  --radial: linear-gradient(108.7deg, #48CFAD 8.82%, #19A784 89.39%);
  --highlight: #01A897;
  
  --neutral-light-darkest: #C5C6CC;
  --neutral-light-dark: #D4D6DD;
  --neutral-light-medium: #E8E9F1;
  --neutral-light-light: #F8F9FE;
  --neutral-black: #121212;
  
  --dark: #1F2024;
  --content-dark: #1A1A1A;
  
  --success-dark: #22C55E;
  --success-medium: #70D093;
  --success-light: #E7F4E8;

  --warning-dark: #FACC15;
  --warning-medium: #FDE047;
  --warning-light: #FFF4E4;

  --error-dark: #ED3241;
  --error-medium: #FF616D;
  --error-light: #FFE2E5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  background: var(--black);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;

  max-width: 1240px;
  margin: 0 auto;
}

body, input, textarea, button {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 700;
}

button {
  cursor: pointer;
}

[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

div.divider {
  width: 542px;
  height: 6px;

  background: var(--radial);
  margin: 0 auto;
}

a.default-button {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  width: 221px;

  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  
  border-radius: 12px;
  border: none;
  background: var(--radial);
}

span.assinatura {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  height: 155px;

  font-size: 32px;
  font-weight: 700;

  background-image: url('../assets/signature.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

main {
  margin: 74px 0 0;
}

@media (max-width: 768px) {
  main {
    padding: 74px 0 0;
    max-width: 100%;
  }

  div.divider {
    height: 2px;
    width: 90%;
  }

  div.divider.low {
    width: 296px;
  }

  span.assinatura {
    font-size: 15px;
    height: 75px;
  }
}