@font-face {
  font-family: "Proxima Nova";
  src: url("../images/fonts/ProximaNova-Regular.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../images/fonts/Proxima\ Nova\ Alt\ Bold.otf");
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../images/fonts/Proxima\ Nova\ Semibold.ttf");
  font-weight: 600;
  font-style: 600;
}

:root {
  --font-family: "Proxima Nova", sans-serif;
  --white: #fff;
  --blue: #12adee;
  --black: #1d1d1d;
  --font-size: 12px;
  --button-desabled: #cacaca;
}

body {
  box-sizing: border-box;
  margin: 0;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  align-items: space-between;
}

main {
  margin-bottom: 50px;
}

/* .submit:disabled {
  background-color: var(--button-desabled);
  cursor: not-allowed;
} */
#submitButton:disabled{
  background-color: var(--button-desabled)!important;
  cursor: not-allowed;
}
#submitButton {
  width: 168px;
  height: 40px;
  
  border-radius: 2px;
 margin-top:17px;
 display: flex;
 align-items: center;
  justify-content:center;
  cursor: pointer;
  border:none;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight:bold;
  color:var(--white);
  text-decoration: none; 
}

.spacer {
  flex: 1;
}

.wrapper {
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  border-bottom: #e8e8e8 2px solid;
}

.header {
  width: 1088px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.footer footer {
  padding: 10px 0;
}

.header-link {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  max-width: 1128px;
}

.img {
  display: flex;
  align-items: center;
}

.link {
  color: #707070;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 600;
  text-decoration: none;
}

.spacer1 {
  flex: 1;
}

.footer {
  width: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:20px;
}

.wrapper1 {
  width: 1088px;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.footer-barr {
  padding: 0 5px;
}

.terms {
  font-family: var(--font-family);
  font-size: 11px;
  text-decoration: none;
  color: #909090;
  font-weight: 400;
}

.copy {
  font-size: 11px;
  color: #707070;
  line-height: 2;
  font-family: var(--font-family);
  margin-top: 0;
}

@media screen and (min-width: 320px) and (max-width: 413.98px) {
  .copy {
    margin-top: 20px;
  }
  .area-content{
    flex-direction:column;
    text-align:center;
  }
  .header {
    width: 242px;
  }

  .wrapper1 {
    width: 242px;
    flex-direction: column;
    padding: 20px 0;
    box-sizing: content-box;
  }
}

@media screen and (min-width: 414px) and (max-width: 767.98px) {
  .copy {
    margin-top: 20px;
  }
  .area-content{
    flex-direction:column;
    text-align:center;
  }
  .header {
    width: 338px;
    height: auto;
  }

  .wrapper1 {
    width: 338px;
    flex-direction: column;
    padding: 20px 0;
    box-sizing: content-box;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .header,
  .wrapper1,.area-content {
    width: 720px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {

  .header,
  .wrapper1,.area-content {
    width: 740px;
  }
}

/* Bootstrap media */
@media (min-width: 320px) {
  .footer-barr {
    display: none;
  }

  .footer footer {
    padding: 20px 0;
  }
}

@media (min-width: 1366px) {
  .spacer1 div {
    flex-direction: row !important;
  }

  .footer-barr {
    display: block;
  }
}