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

html {
  height: 100%;
  font-family: 'Manrope', sans-serif;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.left-panel {
  display: flex;
  width: 50%;
  height: 100%;
  background-color: #063065;
  justify-content: space-around;
}

.right-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background: #ffffff;
  padding-top: 32px;
  padding-bottom: 32px;
}

.left-panel .left-logo-img {
  position: fixed;
  left: calc(25% - 100px);
  top: calc(50% - 70px);
  width: 365.84px;
  height: 67.92px;
}

.image-center {
  position: fixed;
  top: calc(40% - 50px);
  left: calc(50% - 148px);
}

.reg-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  padding: 32px 32px;
}

.reg-form > p {
  text-align: center;
  width: 28%;
  margin-top: 34px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 32px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.header a {
  text-decoration: none;
}

.header > h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #212121;
}

.reset-password-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80%;
}

.reset-password-header > h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
}

.reset-password-form-button {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: row;
  width: 28%;
  padding: 16px 32px;
  height: 56px;
  border-radius: 50px;
  background: linear-gradient(180deg, #063065 0%, #3370bc 100%);
  box-shadow: 0 22px 44px -3px rgba(46, 105, 178, 0.3);
  margin-top: 24px;
}

.external-auth {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 50px;
}

button.btn-google,
button.btn-linkedin {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 48px;
  background: #ffffff;
  border: none;
  box-shadow: 0px 22px 44px -3px rgba(46, 105, 178, 0.3);
  border-radius: 50px;
  cursor: pointer;
}

.external-auth span {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #23222d;
  margin-left: 16px;
}

.form-email,
.form-password {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
  padding: 16px 32px;
  height: 65px;
  border: 1px solid #cddcfc;
  border-radius: 5px;
  margin-top: 24px;
}

.form-validation {
  border: 1px solid #f81b65 !important;
}

.helper-text {
  width: 100%;
  display: none;
  flex-direction: row;
  justify-content: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #31353b;
  margin-top: 10px;
}

.helper-text img {
  margin-left: 8px;
  height: 16px;
  width: 16px;
}
.helper-text-visible {
  display: flex;
}
.pass-requirements-tooltip {
  display: none;
  position: fixed;
  flex-direction: column;
  width: 365px;
  height: 125px;
  background: #ffffff;
  box-shadow: 0 22px 44px -3px rgba(46, 105, 178, 0.3);
  border-radius: 5px;
  padding: 16px;
  left: 66%;
  z-index: 1;
}

.pass-requirements-tooltip span {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #31353b;
}

.pass-requirements-tooltip span img {
  margin-right: 8px;
  width: 14px;
  height: 14px;
}

.tooltip-visible {
  display: flex;
}

.form-email:hover,
.form-password:hover {
  border: 1px solid #063065;
}

.form-button {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  padding: 16px 32px;
  border-radius: 50px;
  background: linear-gradient(180deg, #063065 0%, #3370bc 100%);
  box-shadow: 0 22px 44px -3px rgba(46, 105, 178, 0.3);
  margin-top: 24px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #fefffe;
  border: none;
  cursor: pointer;
  text-align: center;
}

.form-email > label,
.form-password > label {
  margin-right: 18px;
  padding-top: 5px;
}

input[type='email'],
input[type='password'] {
  border: none;
  width: 90%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #31353b;
}

.form-button > button {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #fefffe;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.form-button > img {
  width: 24px;
  height: 24px;
  padding: 5px;
}

input:focus {
  outline: none;
}

.footer {
  width: 80%;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

.footer p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000000;
}

.footer a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
}
.header-home {
  display: flex;
  align-items: center;
  flex-flow: column;
}

.header-home > h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #212121;
}

.header-home > p {
  margin-top: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
}

.btn-group-home {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 16px;
  width: 100%;
  text-align: center;
  margin-top: 48px;
  padding: 0 10%;
}

.btn-group-home > a {
  padding: 16px 32px;
  border-radius: 50px;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-group-home > a:first-child {
  background: linear-gradient(180deg, #063065 0%, #3370bc 100%);
  color: white;
  box-shadow: 0 22px 44px -3px rgba(46, 105, 178, 0.3);
}

.btn-group-home > a:last-child {
  background: #ffffff;
  color: black;
  box-shadow: 0 22px 44px -3px rgba(46, 105, 178, 0.3);
}

.signup-form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-home {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .external-auth {
    flex-direction: column;
    gap: 16px;
  }
  .reset-password-header {
    text-align: center;
  }

  .left-panel .left-logo-img {
    width: 300px;
    height: auto;
    left: calc(25% - 80px);
  }
}

@media screen and (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    width: 100%;
    height: auto;
  }

  .left-panel {
    height: 40vh;
    position: relative;
  }

  .left-panel .left-logo-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
  }

  .left-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .external-auth {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  .image-center {
    display: none;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .signup-form {
    width: 90%;
  }

  .reg-form > p {
    width: 80%;
  }

  .form-button {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .reg-form {
    padding: 16px;
  }
  .reset-password-header {
    text-align: center;
  }
  .external-auth {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .external-auth button {
    padding: 20px 36px;
  }

  .form-email,
  .form-password {
    padding: 12px 24px;
  }

  button.btn-google,
  button.btn-linkedin {
    width: 100%;
  }

  .header > h1 {
    font-size: 28px;
  }
  .btn-group-home > a {
    padding: 25px 35px;
  }

  .pass-requirements-tooltip {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .left-panel {
    height: 33vh;
  }

  .left-panel .left-logo-img {
    width: 200px;
  }

  .reg-form {
    padding: 12px;
  }

  .header > h1 {
    font-size: 24px;
  }

  .external-auth {
    width: 100%;
  }
  .external-auth button {
    padding: 12px 20px;
  }
  .btn-group-home > a {
    padding: 16px 20px;
  }

  .form-email,
  .form-password {
    height: 55px;
  }

  input[type='email'],
  input[type='password'] {
    font-size: 14px;
  }

  .form-button {
    padding: 12px 24px;
  }

  .footer {
    margin-top: 20px;
    font-size: 14px;
  }

  .footer p {
    font-size: 14px;
  }
}

.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
}

.form-button {
  width: auto;
  min-width: 150px;
}

.helper-text {
  position: relative;
}

.pass-requirements-tooltip {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
}

@media (hover: none) and (pointer: coarse) {
  .form-button,
  button.btn-google,
  button.btn-linkedin,
  .footer a {
    min-height: 44px;
  }

  input[type='email'],
  input[type='password'] {
    font-size: 16px;
  }
}
