@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
.zendesk-icon {
  /* Ajusta el tamaño según tus necesidades */
  width: 20px;
  height: 20px;
}
.login-form {
  position: relative;
}

.login-form .form-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.login-form .form-header h1 {
  margin: 0;
  color: var(--black);
}
.login-form .form-header p {
  margin: 10px 0 40px 0;
  color: var(--dark-grey);
}

.login-form .form-input {
  display: flex;
  flex-direction: column;

  min-width: 320px;

  margin-bottom: 46px;
}

.password-input {
  margin-top: 16px;
}

.login-form .forgot-login {
  text-align: right;
  margin-top: 16px;
}

.login-form .form-control-btns {
  display: flex;
  flex-direction: column;

  min-width: 320px;
}

.form-control-btns .btn:not(:first-child){
  margin-top: 16px;
}

.terms-privacy{
  position: absolute;
  bottom: 30px;
  font-size: 14px;
}

:root {
  --black: #333333;
  --dark-grey: #6c6c77;
  --blue: #5E6CB2;
}

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}



