:root {
  --white-color:                  #ffffff;
  --primary-color:                #D3DBED;
  --secondary-color:              #0d6efd;
  --navbar-bg-color:              #182B54 ;

  --body-font-family:             'DM Sans', sans-serif;
  
  --copyright-text-font-size:     16px;
  --h1-font-size:                 42px;
  --h2-font-size:                 28px;
  --h3-font-size:                 16px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;  
  --menu-font-size:               16px;
  
  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family); 
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }
}

/*NAVBAR*/

.navbar {
  background: var(--navbar-bg-color);
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-item a {
  color: var(--primary-color);
  padding-right: 20px !important;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
}

/*FIN NAVBAR*/

/*LOGIN*/

.login {
  position: relative;
  height: calc(100vh - 84px);
}

.login::after {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(39, 48, 83, 0.1) 0%, rgb(39, 48, 83) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
}

.loginDiv{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 85vh;  
}

.loginDiv h1, h2{
  color: var(--white-color);
  text-align: center;
}

.H2Inst{
  margin-bottom: 30px;
}

.loginForm{
  position: relative;
  text-align: center;
}

.loginForm .form-control{
  background: #ffffff;
  box-shadow: none;
  border: 0;
  border-radius: 50px;
  width: 340px;
  height: 45px;
  padding: 6px 30px;
}

.loginForm .white-button{
  border-radius: 30px;
  padding: 10px 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: black;
  outline: none;
}

.logoCampana{
  width: 15%;
  margin-bottom: 30px;
}

.pRecover{
  color: var(--white-color);
}
/*FIN LOGIN*/