@import url('colors.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: var(--main-bg) !important;
  background-size: var(--bg-image-size) !important;
  -webkit-background-size: var(--bg-image-size) !important;
  -moz-background-size: var(--bg-image-size) !important;
}

#LoginForm_Logo {
    border-radius: 0%;
    width: var(--login-logo-width);
	margin-top: var(--login-logo-margin-top);
	margin-bottom: var(--login-logo-margin-bottom);
    visibility: visible;
}

#MainMaster_CompanyLogo{
	width: var(--company-logo-width);
	border-radius: var(--company-logo-border-radius);
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
	font-size: 13px;
}

.card-container {
  display: flex;
  width: var(--main-container-width); /* Ajuste al 80% del ancho de la pantalla */
  height: var(--main-container-height); /* Mantiene proporción sin llenar la pantalla */
  border-radius: 20px;
  overflow: hidden;
  background: var(--body-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Panel izquierdo con imagen */
.left {
  flex: 3; /* 3/4 de la pantalla */
  background: url('/bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
}

/* Panel derecho con el formulario */
.right {
  flex: 1;
  padding: 30px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra el contenido verticalmente */
  align-items: center;
  background: var(--right-bg);
}

.top-bar {
  width: 100%;
  height: 24px;
  background-color: var(--body-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 14px;
  color: var(--body-text);
  font-weight: 500;
  margin-bottom: 10px; /* Reducir el espacio extra */
}

.left-text {
  color: var(--highlight2);
  text-align: left;
}

.right-text {
  text-align: right;
}

/* Ajustar el ancho del formulario */
.login-box {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto; /* Centra horizontalmente */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-logo-container {
  text-align: center;
  margin-bottom: 10px; /* Reduce el espacio debajo del logo */
}

.company-logo-container img {
  max-width: 80%;
}


/* Centrar el contenedor de la imagen */
.registration {
  text-align: center;
  margin-top: 20px; /* Ajusta según sea necesario */
}


.logo {
  width: 180px;
  margin-bottom: 20px;
}

h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--header-text-color);
  font-size: 20px;
  font-weight: bold;
}

/* Inputs más anchos */
input {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  font-size: 18px;
}

/* Contenedor del input de contraseña */
.password-container {
  position: relative;
  width: 100%;
}

/* Icono de mostrar/ocultar contraseña */
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Enlace de "olvidaste tu contraseña" */
.forgot-password {
  display: block;
  margin-top: 10px;
  color: var(--highlight);
  text-decoration: none;
  font-size: 14px;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Botón de inicio de sesión */
.btn {
  width: 100%;
  background: var(--highlight2);
  color: white;
  padding: 8px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.focus {
  color: white;
  background: var(--highlight2-hover);
}

.btn:hover {
  background: var(--highlight2-hover);
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 1024px) {
  .card-container {
    width: 90vw;
    height: 85vh;
  }
  .login-box {
    max-width: 350px;
  }
}

@media (max-width: 768px) {

  .left {
    display: none;
  }
  .right {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 30px;
    justify-content: center;
  }

  .card-container {
    width: 90vw;
    height: auto;
  }

  .login-box {
    max-width: 100%;
  }

  input, .btn {
    font-size: 16px;
    padding: 14px;
  }

  .top-bar {
    font-size: 12px;
    padding: 0 10px;
  }
}
