body {
  background-image: url(../public/images/bgmotor.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  max-width: 45%;
  margin: auto;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .container {
    max-width: 90%;
    margin-top: 30px;
  }
}

.logo {
  width: 65px;
  height: 65px;
  padding: 1px;
  margin-top: 10px;
  border-radius: 50%; /* Makes the container circular */
  background: white; /* Optional: adds a white background */
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: adds subtle shadow */
  object-fit: cover; /* Mantiene la proporción y cubre el contenedor */
  object-position: center; /* Centra la imagen dentro del círculo */
}

.divarrow {
  padding-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.arrow {
  cursor: pointer;
}

.arrow:hover {
  color: #d9534f;
}

.login-box {
    color: black;
    margin: auto;
    padding: 15px;
    width: 300px;
    background-color: white;
    border-radius: 5px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.input-group label {
    width: 80px;
    margin: 0;
    font-size: 13px;
}

.input-group .form-control {
    flex: 1;
    height: 28px;
    padding: 3px 8px;
    font-size: 13px;
}

.btn-sm {
    padding: 4px 12px;
    font-size: 13px;
    width: 100%;
    margin-top: 8px;
}

.help-text {
    font-size: 11px;
    color: gray;
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .login-box {
        width: 280px;
        padding: 12px;
    }
}
