@import url("https://fonts.googleapis.com/css?family=Fira+Sans");

html, body {
  background: #2b2b2b !important;
  overflow-x: hidden;
  font-family: 'Fira Sans', sans-serif;
  color: #000;
}

/* Navbar */
.navbar .container-fluid {
  background: #779C2B;
  padding-bottom: 0.5rem;
}

.nav-link, .form-label, .Filters-title {
  color: #fff;
}

/* Logo */
.logo {
  width: 128px;
  height: 104px;
}

/* Footer */
.footer {
  margin-top: 5dvh;
  width: 100%;
  background: #779C2B;
  color: #fff;
  padding-top: 2rem;
}

.footerRights {
  width: 100%;
  height: 5dvh;
  background: #222222;
  color: #fff;
  text-align: center;
  line-height: 5dvh;
  font-size: 14px;
}

/* Otros elementos comunes */
.footerDiv2 {
  color: #fff;
}

.divider {
  height: 3px;
  width: 38px;
  background-color: #A67246;
}


.footerDiv1 {
  justify-items: center;
  width: 25dvw;
}

/* Centrado formulario */
main {
  justify-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

/* === Formulario Login === */
.form-structor {
  background-color: #222;
  border-radius: 15px;
  height: 450px;
  width: 350px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.form-structor::after {
  content: '';
  opacity: .8;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 500px;
  background-image: url('https://images.unsplash.com/photo-1503602642458-232111445657?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=bf884ad570b50659c5fa2dc2cfb20ecf&auto=format&fit=crop&w=1000&q=100');
}

.signup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  z-index: 5;
  transition: all 0.3s ease;
}

.form-title {
  color: #fff;
  font-size: 1.7em;
  text-align: center;
  margin-bottom: 1rem;
}

.form-holder {
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  margin-top: 50px;
  transition: all 0.3s ease;
}

.input {
  border: 0;
  outline: none;
  box-shadow: none;
  display: block;
  height: 30px;
  line-height: 30px;
  padding: 8px 15px;
  border-bottom: 1px solid #eee;
  width: 100%;
  font-size: 12px;
}

.input:last-child {
  border-bottom: 0;
}

.input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* Botón de login */
.submit-btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 0;
  border-radius: 15px;
  display: block;
  margin: 15px auto;
  padding: 15px 45px;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #8b5934;
}

@media (max-width: 768px) {
  .form-title{
    font-size: xxx-large;
  }
  .signup{
    width: 85%;
  }
  .input{
    height: 3.5rem;
    font-size: large;
  }
  .submit-btn{
    font-size: large;
  }
}