* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  overflow: hidden;
}

.container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  height: 600px;
  background-color: #1c1c1c;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.left-section {
  background-color: #1c1c1c;
  color: #00ffff;
  padding: 40px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #00b3b3;
}

.left-section p {
  font-size: 17px;
}

.right-section {
  background-color: #1c1c1c;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.5);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  width: 320px;
  border-color: #fff;
}

.login-box h2 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #00ffff;
}

.input-box {
  position: relative;
  margin-bottom: 30px;
  
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    background-color: #1c1c1c !important; /* Fondo oscuro */
    -webkit-box-shadow: 0 0 0px 1000px #1c1c1c inset !important;
    color: #fff !important; /* Color del texto */
    -webkit-text-fill-color: #fff !important; /* Cambia el color del texto */
}

.input-box input {
  caret-color: #fff; 
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  border-bottom: 2px solid #00ffff;
  outline: none;
  color: #fff;
  font-size: 16px;
}
/* 
.input-box label {
  position: absolute;
  left: 0;
  top: -15px;
  color: #00ffff;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease;
} */

/* .input-box input:focus + label,
.input-box input:not(:placeholder-shown) + label {
  top: -15px;
  font-size: 12px;
  color: #00ffff;
} */
/* Color y tamaño del placeholder */
.input-box input::placeholder {
  color: #00b3b3; /* Cambia este color al que prefieras */
  font-size: 14px; /* Cambia el tamaño según tus necesidades */
  opacity: 1; /* Asegúrate de que el color sea visible */
}

/* Para navegadores antiguos de Mozilla Firefox */
.input-box input::-moz-placeholder {
  color: #00b3b3;
  font-size: 14px;
  opacity: 1;
}

/* Para navegadores antiguos de Internet Explorer y Edge */
.input-box input:-ms-input-placeholder {
  color: #00b3b3;
  font-size: 14px;
  opacity: 1;
}

/* Para navegadores antiguos de Opera */
.input-box input::-webkit-input-placeholder {
  color: #00b3b3;
  font-size: 14px;
  opacity: 1;
}

.btn-login {
  width: 100%;
  padding: 10px;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-login:hover {
  background-color: #00b3b3;
}

@media (max-width: 900px) {
  .container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100vh;
      border-radius: 15px;
  }

  .left-section {
      background-color: transparent;
      color: #00ffff;
      padding: 40px;
      width: auto;
      text-align: center;
  }

  .left-section h1 {
      font-size: 32px;
  }

  .left-section p {
      margin-top: 15px;
      font-size: 16px;
  }

  .right-section {
      width: 100%;
      background-color: transparent;
      justify-content: center;
      padding: 20px;
  }

  .login-box {
      width: 90%;
      max-width: 400px; 
  }
}
