@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4c444b;
    border-bottom: 3px solid #ababac;
    padding: 0px 30px;
    height: 110px;
    font-family: "Robo"
  }
  
  .navbar a{
    text-decoration: none;
    color: white;
    font-family: "Roboto Condensed", serif;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
  }
  
  .nav-links a{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
  }

  
  .nav-links a:hover, .nav-btn{
    background-color: #4c444b;
    transition: all 0.2s;
  }
  
  .nav-links a:hover{
    background-color: white;
  }
  
  .nav-links .nav-btn:hover{
    background-color: #e1f32c;
  }
  
  .nav-links a:hover, .nav-btn:hover li{
    color: #4c444b;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    background-color: #333;
    height: 3px;
    width: 25px;
    margin: 3px 0;
  }

  .user{
    display: none;
  }

  #adminBtn{
  display: none;
}
  
  
  main{
    height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/imgConecte1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
  }

  .container{
    width: 500px;
    height: 50%;
    margin-top: 170px;
    margin-bottom: 100px;
  }

  form {
    flex: 1;
    height: 100%;
    display: grid;
    align-items: center;
  }
  
  form h1{
    align-self: end;
  }

  form input {
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 1rem;
    outline: none;
    align-self: start;
  }

  .btn {
    background-color: #d6ff32;
    color:#4c444b;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    width: 50%;
    border-radius: 10px;
    margin: 0 auto;
    align-self: start;
  }
  
  .btn:hover {
    background-color: #c4e82c;
  }

form p{
    font-size: 1.1rem;
    color: #453e47;
}

  footer {
    background-color: #453e47;
    color: #fff;
    padding: 40px 10px;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin: 30px 0;
  }
  
  .footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-section h2 {
    margin-bottom: 10px;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
    
  }
  
  .footer-section a:hover {
    cursor: pointer;
    color: #d6ff32;
  }
  .bi-whatsapp{
    margin-right: 10px;
  }

  @media (max-width: 375px) {
    .menu-toggle {
      display: flex;
    }
  
    .navbar{
      width: 100vw;
      padding: 0;
      justify-content: space-around;
    }
  
    nav .logo img{
      width: 100px;
    }

    .navbar a{
      width: 100px;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #f2f2f2;
      width: 100%;
      text-align: center;
      height: 20%;
      gap: 0;
    }
    
    .nav-links{
      margin-top: 5%;
      z-index: 1000;
    }
  
    .nav-links a{
        width: 100%;
        background-color: #4c444b;
    }
  
    .nav-links a li{
        width: 100%;
    }
  
    .nav-links .nav-btn{
      background-color: #d6ff32;
    }
  
    .nav-links.active {
      display: flex;
    }

    main{
        height: 650px;
    }

    .footer-container{
      gap: 20px;
    }
  
  .footer-section{
    width: 200px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section p{
    margin: 0;
  }
  
  .logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  }

  @media (min-width: 376px) and (max-width: 950px) {
    .menu-toggle {
      display: flex;
    }
  
    .navbar{
      width: 100vw;
      padding: 0;
      justify-content: space-around;
    }
  
    nav .logo img{
      width: 100px;
    }

    .navbar a{
      width: 100px;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #f2f2f2;
      width: 100%;
      text-align: center;
      height: 20%;
      gap: 0;
    }
    
    .nav-links{
      margin-top: 5%;
      z-index: 1000;
    }
  
    .nav-links a{
        width: 100%;
        background-color: #4c444b;
    }
  
    .nav-links a li{
        width: 100%;
    }
  
    .nav-links .nav-btn{
      background-color: #d6ff32;
    }
  
    .nav-links.active {
      display: flex;
    }
    
    main{
        height: 650px;
    }

    .footer-container{
      gap: 20px;
    }
  
  .footer-section{
    width: 200px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section p{
    margin: 0;
  }
  
  .logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  }