section {
  max-width: 100%;
  height: 100%;
}

.error {
  color: red;
  font-size: 13px;
}

/*Visuals*/
.sect {
  display: flex;
  justify-content: center;
}

/*Auth Form*/
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: inherit;
  color: inherit;
  padding: 3.8em 2em 0 2em;
  width: 49%;
  
}
.form-container a {
  width: 100%;
  text-align: right;
  font-size: 13px;
  text-decoration: underline;
}
.form-container h4, .form-container p {
  padding: 0 20px;
  margin: 0 10px;
}
.form-container p {
  font-size: 13px;
}
.card {
  position: relative;
  margin: 10px;
  border-radius: 4px;
  background-color: inherit;
  width: 80%;
  padding: 0 20px;
}
form {
  display: flex;
  flex-direction: column;
}
input[type="checkbox"] {
  background-color: red;
  z-index: 13;
  cursor: pointer;
}
form > div > p {
  font-size: 13px;
  font-weight: 600;
  width: 55%;
  margin: 0em 0 0 3em;
  position: relative;
  right: 23px;
}
form > div {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
.form-items {
  display: flex;
  flex-direction: column;
}
.form-title {
  font-size: 13px;
  padding-bottom: 6px;
  color: inherit;
  font-weight: 600;
}
.input-field {
  border: 1px solid rgba(171,171,171,0.32);
  border-radius: 4px;
  background-color: inherit;
  /*background-color: rgba(1,74,115, 0.1);*/
  background: var(--color-primary);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  height: 45px;
  outline: none;
  padding-left: 6px;    
}
.input-field::placeholder {
  color: rgba(45,39,39,0.27);
}
input:focus, textarea:focus {
  border: 1.7px solid;
  border-radius: var(--border-radius-sm);
  border-image: var(--color-primary) 1;
}
button {
  width: 100%;
  padding: 15px 30px;
  background-color: #FF6600;
  background: var(--color-primary);
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border-radius: 4px;
  border: none;
  outline: none;
  font-weight: 600;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 7px rgba(0, 255, 136, 0.3);
  transition: background-color 0.5s ease-in;
}
@supports (-moz-appearance: none) {
  form input,
  form select,
  form textarea,
  .error {
    margin-bottom: 15px; /* Firefox only */
  }
}

/*Social auth & login*/
.social-auth {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 2em;
}

.social-auth > div {
  border-top: 2px solid rgba(0, 0, 0, 0.23);
  padding-top: 0;
  width: 39%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-btn a {
  text-align: center;
  padding: 11px 35px;
  border: 1.5px solid rgba(0, 0, 0, 0.23);
  border-radius: 5px;
  position: relative;
  top: 1.8em;
  font-weight: 600;
  text-decoration: none;
  /*margin-left: -0.5em;*/
}
.social-btn a:hover {
  box-shadow: 2px 2px 17.2px 0 rgba(81, 80, 210, 0.08);
}
.social-btn a i {
  font-size: 1.4rem;
  position: relative;
  top: 5px;
  color: #2D2727;
}
.social-auth p {
  color: rgba(0, 0, 0, 0.23);
  font-size: 1rem;
  margin-top: -2em;
  padding: 0 1em 1em 1em;
}

.login p {
  text-align: center;
  color: inherit;
  font-weight: 500;
  position: relative;
  top: 4em;
}
.login p a {
  background: var(--color-primary);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*Media Queries for Tablets Vertical View*/
@media only screen and (max-width: 1080px) {
  section {
    width: 100%;
  }
  .card {
    width: 94%;
  }
  .social-auth {
    width: 100%;
  }
  .social-auth > div {
    width: 48%;
  }
  .social-btn a {
    padding: 11px 35px;
    border-radius: 5px;
    top: 1.8em;
    font-weight: 600;
  }
  .social-btn a i {
    font-size: 1.4rem;
    position: relative;
    top: 5px;
    color: #2D2727;
  }
  .social-auth p {
    color: rgba(0, 0, 0, 0.23);
    font-size: 1rem;
    margin-top: -2em;
    padding: 0 1em 1em 1em;
  }

}

 @media only screen and (max-width: 1025px) {
    .form-container a, .form-container p, .form-title {
      font-size: 12px;
    }
    .card {
      width: 96%;
    }
    .form-container p {
      padding: 0 0 1.4em 0;
    }
    form > div > p {
      right: 1px;
      /*top: 3px;*/
    }
    input[type="checkbox"] {
      position: relative;
      top: -7px;
    }
 }

/*Media Queries for smaller Tablets Vertical View*/
@media only screen and (max-width: 780px) { 
  section {
    width: 100%;
  }
  .card {
    width: 90%;
    padding: 0;
    margin: 0;
  }
  .form-container {
    width: 71%;
  }
  .form-container h4 {
    padding: 0 0 0.6em 0;
    margin: 0;
  }
  .form-container p {
    padding: 0 0 1.4em 0;
  }

  form > div > p {
    right: 2px;
    top: 3px;
  }
  input[type="checkbox"] {
    position: relative;
    top: -6px;
  }

  /*Social auth & login*/
  .social-auth p {
    font-size: 1rem;
    margin-top: -2em;
    padding: 0 1em 1em 1em;
  }
  .social-auth > div {
    width: 35%;
  }
  .social-btn a {
    padding: 11px 30px;
  }
  .login p {
    font-size: 0.8rem;
  }
  .login p a {
    font-size: 0.8rem;
  }
}

/*Media Queries for Mobile Vertical View*/
@media only screen and (max-width: 450px) {
  section {
    width: 100%;
    padding: 45px 2rem 0 2rem;
  }
  
  .form-container {
    width: 90%;
    padding-left: 1.5rem;
  }
  .form-container a {
    margin-top: -2em;
    padding-bottom: 1.6em;
  }
  .form-container p {
    text-align: center;
  }
  .card {
    margin: 1em 0 0 0;
    width: 100%;
  }
  form > div > p {
    width: 100%;
  }
  form > div > a {
    padding-top: 0.5em;
  }

  /*Social auth & login*/
  .social-auth {
    display: flex;
    flex-direction: column;
  }

  .social-auth > div {
    border: none;
    width: 100%;
    margin: 0 0 2em 0;
    position: relative;
    top: 2em;
  }
  .social-auth p {
    color: rgba(0, 0, 0, 0.53);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    bottom: 2.5em;
  }

}


/*Media Queries for smaller Mobile Vertical View*/
@media only screen and (max-width: 380px) {
  section {
    width: 100%;
    padding: 45px 2rem 0 2rem;
  }
  .form-container {
    width: 100%;
    padding-left: 1.5rem;
  }

}