/*Inicio de sesion*/
body{
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}
:root {
  --main-bg-color: #e67e22;
  --main-text-color: #e67e22;
  --second-text-color: #576574;
  --second-bg-color: #dfe6e9;
}

header {
  z-index: 1;
  background-color: rgb(245, 245, 245);
}

header .logo {
  margin: 0;
  padding: 25px 30px;
  font-weight: bold;
  color: #d38314;
  font-size: 1.2rem;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 25px;
}

header a {
  padding: 5px 12px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}

header a:hover {
  color: #d38314;
}

#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 90vh;
  color: white;
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(../images/Comunidad/pexels-pixabay-415611.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#hero h1 {
  color: white;
}

#hero button {
  font-size: 1.75em;
}

div .cLogin {
  background-color: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(5px);
  padding: 40px 0;
  box-shadow: 0 0 16px 0 hsla(42, 19%, 27%, 0.8);
  border-radius: 10px;
  border: none;

  /*width: 100%;*/
}
form .grupo {
  position: relative;
  margin: 45px;
}

input {
  background: none;
  color: #c6c6c6c6;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--main-bg-color);
}

input:focus {
  outline: none;
  color: #5e5d5d;
}
label {
  color: var(--second-text-color);
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 5px;
  top: 10px;
  transition: 0.5s ease-in-out all;
  pointer-events: none;
}
input:focus ~ label,
input:valid ~ label {
  top: -25px;
  font-size: 12px;
  color: var(--second-text-color);
}
#imgLogin {
  display: none;
}

/*
#footer{
    background-color: rgb(230, 230, 230);
}

footer p{
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
}

footer .container{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/
/*--------------------------------------*/

.site-footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #26272b;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}
.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}
.site-footer hr.small {
  margin: 20px 0;
}
.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}
.site-footer a {
  color: #737373;
}
.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
}
.footer-links a {
  color: #737373;
}
.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}
.footer-links.inline li {
  display: inline-block;
}
.site-footer .social-icons {
  text-align: right;
}
.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}
.copyright-text {
  margin: 0;
}
@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}
.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}
.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}
.social-icons a.facebook:hover {
  background-color: #3b5998;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dribbble:hover {
  background-color: #ea4c89;
}
@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}
/*--------------------------------------*/

@media (min-width: 992px) {
  header {
    position: fixed;
    width: 100%;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  header nav {
    flex-direction: row;
    padding-bottom: 0;
    padding-right: 20px;
  }
  #hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
  }
  #imgLogin {
    display: inline;
  }
  .cascading-right {
    margin-right: -80px;
    margin-left: 180px;
  }
  #contForm {
    margin-top: 3%;
  }
  footer .container {
    justify-content: flex-end;
  }
  #map{
    outline: 2px solid rgb(126, 125, 123);
    width: 500px;
    height: 300px;
  }
  #map iframe{
    width: 100%;
    height: 100%;
  }
  
}
@media (max-width: 1395px) {
  header .logo {
    margin: 0;
    padding: 25px 30px;
    font-weight: bold;
    color: #d38314;
    font-size: 1.2rem;
  }

  @media (max-width: 1200px) {
    header .logo {
      margin: 0;
      padding: 25px 30px;
      font-weight: bold;
      color: #d38314;
      font-size: 0.7em;
    }
    header a {
      padding: 5px 12px;
      text-decoration: none;
      font-weight: bold;
      color: black;
      font-size: 0.9em;
    }
    #map {
        outline: 2px solid rgb(126, 125, 123);
        width: 300px;
        height: 200px;
    }
    #map iframe{
        width: 100%;
        height: 100%;
    }
  }
}
