@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-BookItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-UltraItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-XLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('https://branding.dfactor.com.mx/dashboard/brands/development%20factor/fonts/Gotham-XLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}



body,
html {
  height: 100%;
  font-family: 'Gotham', Arial, sans-serif;
}

.gradient-column {
  background-image: url("/img/background-login.png");
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.branding-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.branding-container h1 {
  font-size: 6rem !important;
  color: #ffffff;
  font-weight: bold;
}
.branding-container span {
  font-size: 4rem !important;
  color: #ffffff;
  font-weight: 200;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  height: 100vh; /* Set the height of the container to full viewport height */
}

.logo-img {
  margin-bottom: 20px; /* Adjust margin as needed */
}

.development-factor-text {
  display: block;
  margin-top: 20px;
  color: #d7d7d7;
  font-size: 16px;
}

.login-form input {
  text-align: center;
  width: 300px;
  height: 50px;
  margin-bottom: 15px;
}

.login-form button {
  width: 300px;
  height: 50px;
  background-color: #1A2672;
  border: none;
}

@media (max-width: 1000px) {
  .gradient-column {
    display: none;
  }

  .login-column {
    margin: 0 auto;
    max-width: 400px; /* Adjust as needed */
  }
}