* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f0f0;
  color: #333;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container-login {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.left, .right {
  flex: 1;
  padding: 40px;
}

.container-title h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #333;
}

.container-title p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.container-input {
  margin-bottom: 25px;
  position: relative;
}

.container-input input {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.container-input input:focus {
  outline: none;
  border-color: #999;
}

.container-input input::placeholder {
  color: #999;
}

.btn-ingresar {
  width: 100%;
  padding: 12px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ingresar:hover {
  background: #555;
}

.btn-ingresar:active {
  transform: translateY(2px);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.portada {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .container-login {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    padding: 30px;
  }

  .right {
    order: -1;
  }
}

/* Estilos relacionados con motos */
.container-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    45deg,
    #333,
    #333 10px,
    #fff 10px,
    #fff 20px
  );
}

.btn-ingresar {
  background: #333;
  position: relative;
  overflow: hidden;
}

.btn-ingresar::after {
  content: '🏍️';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  font-size: 24px;
  transition: right 0.3s ease;
}

.btn-ingresar:hover::after {
  right: 20px;
}