@import url(https://fonts.googleapis.com/css?family=Inter);

body,
html {
  font-family: 'Inter';
  background-color: #F3F3F1;
}

.container-fluid {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.backButtonContent {
  position: absolute;
  display: flex;
  align-items: center;
  width: 30%;
  top: 6%;
  left: 3%;
}

.backButton {
  color: #0C774A;
  margin: 0;
  margin-left: 1%;
  text-decoration: none;
}

.backButtonIcon {
  color: #0C774A;
  font-size: 1.3rem;
}

.registerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  background: #FFF;
  width: 25%;
  height: auto;
  padding-bottom: 1rem;
}

.techamoveLogo {
  max-width: 100%;
  max-height: 100%;
}

.logoContent {
  margin-top: 3%;
  max-width: 30%;
  max-height: auto;
}

.registerText {
  color: #545454;
  font-weight: 700;
  font-size: 1.5rem;
}

.existingAccountText {
  margin-top: 5%;
}

.existingAccountText a {
  color: #0C774A;
  font-size: 1rem;
}

.formContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.nameInput {
  margin-top: 5% !important;
}

.nameInput,
.emailInput,
.phoneNumberInput,
.confirmPasswordInput,
.passwordInput {
  margin-top: 3%;
  border: 0;
  color: #676767;
  background-color: #EFF0EC;
  border-radius: 13px;
  height: 3.3rem;
  width: 70%;
  padding-left: 5%;
}

.nameInput,
.emailInput,
.phoneNumberInput,
.confirmPasswordInput,
.passwordInput:focus {
  outline: none;
}

.inputField {
  border: none;
  color: #676767;
}

.error {
  border: 1px solid red;
}

.errorMessage {
  color: red;
  padding: 0;
  margin-top: 2%;
  height: 1rem;
}

.registerButton {
  border: 0;
  border-radius: 13px;
  background: #0C774A;
  color: #FFF;
  width: 70%;
  height: 3.3rem;
  margin-top: 2%;
}

.registerButton:hover {
  background: #0a663f;
}

.registerButton:focus {
  outline: none;
}

.buttonDisabled {
  background: #C5C5C5 !important;
  pointer-events: none;
}


/* bigger devices (laptops) */
@media only screen and (max-width: 1440px) {
  .registerContainer {
    width: 35%;
  }
}

/*Medium devices (tablets) */
@media only screen and (max-width: 1024px) {
  .registerContainer {
    width: 60%;
  }
}

/* Small devices (phones) */
@media only screen and (max-width: 700px) {
  .backButtonContent {
    width: 50%;
  }

  .backButton {
    margin-left: 3%;
  }

  .registerContainer {
    width: 90%;
    margin-top: 18%;
  }

  .container-fluid {
    padding-bottom: 10%;
  }

  .existingAccountText {
    max-width: 80%;
  }

  .nameInput,
  .emailInput,
  .phoneNumberInput,
  .confirmPasswordInput,
  .passwordInput,
  .registerButton {
    width: 85%;
  }

  .backButtonContent {
    top: 3%;
  }
}

/* Extra small devices (older phones) */
@media only screen and (max-width: 340px) {
  .registerContainer {
    width: 90%;
    margin-top: 20%;
  }
}