
body {
  background: url('../../../img/foto fondo.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

.login-logo {
  width: 100px;
  margin: 0 auto 20px;
  display: block;
}

.form-control {
  border-radius: 30px;
  padding: 15px;
}

.btn-primary {
  background-color: #006400;
  border-color: #006400;
  border-radius: 30px;
  padding: 10px 30px;
}

.login-title {
  text-align: center;
  font-size: 24px;
  color: #006400;
  margin-bottom: 20px;
}

.support-btn {
  margin-top: 10px;
}

.support-btn a {
  border-radius: 30px;
}

.error-message {
  color: red;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

.mensaje-animo-conductores {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #d4edda;
  color: #155724;
  box-shadow: 0 0 10px rgba(21, 87, 36, 0.2);
  text-align: center;       /* centra los elementos inline dentro */
}

.mensaje-animo-conductores p {
  display: inline-block;    /* hace que el párrafo sea inline para que text-align funcione */
  margin: 0;                /* quita márgenes predeterminados */
  text-align: center;       /* centra el texto dentro del párrafo */
  line-height: 1.5;
}






