/* VARIABLES */
:root {
  --primary-color: #0c6d42;
  --bg-color: #ffffff;
  --text-muted: #666666;
  --font-family: 'Poppins', sans-serif;
}

/* ESTILOS GENERALES */
body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--primary-color);
  margin: 0;
  padding: 0;
}

/* FONDO */
.fondo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* TITULOS */
h1 {
  font-weight: 600;
  font-size: 2rem;
}

h5 {
  font-weight: 400;
  margin-bottom: 1rem;
}

/* MARGEN SUPERIOR */
.margen-top {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FORMULARIO */
form {
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

form input[type="text"],
form input[type="password"] {
  border-radius: 20px;
  padding: 10px;
  width: 80%;
  border: 1px solid #ccc;
  outline: none;
}

form button.login-btn {
  border-radius: 20px;
  padding: 10px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button.login-btn:hover {
  background-color: #0a5c38;
}

/* IMAGEN FORMULARIO */
form img {
  max-width: 140px;
  margin-bottom: 20px;
}

/* INFORMACIÓN ADICIONAL */
.info-box {
  margin-top: 30px;
  font-size: 14px;
}

.info-box ul {
  padding-left: 1.2rem;
}

.info-box li {
  margin-bottom: 10px;
}

/* SEPARADOR */
hr {
  height: 4px;
  background-color: #333333;
  border-radius: 20px;
  border: none;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .margen-top {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .ggplay, .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .android {
    display: none;
  }
}
/*LOGO IMPUT*/
.input-group-text {
  background-color: #0c6d42;
  color: white;
  border: none;
  border-radius: 20px 0 0 20px;
  width: 40px;
  display: flex;         
  align-items: center;       
  justify-content: center;    
}

.input-custom {
  border-radius: 0 20px 20px 0;
  border: none;
  padding: 10px;
}

.input-group {
  width: 80%;
  margin: 0 auto 15px auto;
}
