/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #F4F4F4;
    overflow-x: hidden;
}

/* Navbar Styles */

/* .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #F4F4F4;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
} */

/* Logo */
.logo img {
    width: 190px; 
    margin-left: 120px;
}


.nav-right {
    display: flex;
    align-items: center;
    margin-right: 60px;
}


.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-right:30px; 
}

.nav-links li {
    margin: 0 15px;
    margin-right: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #043381;
    font-weight: 400;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #7CF1DD;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 5px 30px;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #7CF1DD;
    color: #043381;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #7CF1DD;
    color: #ffffff;
}

.btn-primary {
    background-color: #7CF1DD;
    color: #043381;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #043381;
    color: #ffffff;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #043381;
    margin: 5px 0;
    transition: 0.4s;
}


@media (max-width: 768px) {
    /* .nav-right {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #F4F4F4;
        flex-direction: column;
        align-items: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    } */

    .nav-links {
        flex-direction: column;
        margin: 0;
        padding: 10px 0;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
        margin-right: 0;
    }

    .nav-buttons {
        flex-direction: column;
        width: calc(100% - 40px); 
        padding: 10px 0;
    }

    .btn {
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
    }

    .navbar.active .nav-right {
        display: flex;
    }

    .navbar.active .hamburger div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .navbar.active .hamburger div:nth-child(2) {
        opacity: 0;
    }

    .navbar.active .hamburger div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .logo img {
        margin-left: 10px;
    }
}


/* DASHBOARD INGRESO */ 


/* Contenedor principal del dashboard */
.dashboard-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  max-width: 1300px;
  margin: 0 auto;
  height: 75vh;
  
  background-image: url('img/fondo-dash.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

/* Cuadrado gris para el video */
.video-section {
  background-color: #e0e0e0;
  width: 610px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.ingreso-section {
  position: relative;
  width: 650px;
  height: 497px;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.ingreso-btn {
  background-color: #D1E3EE;
  border: none;
  color: #414141;
  font-size: 18px;
  font-weight: 400;

  padding: 5px 60px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  width: 400px;
}

.ingreso-btn strong {
  font-weight: bold;
}

.ingreso-btn:hover {
  background-color: #043381;
  color: #D1E3EE;
}








/* FOOTER */

.footer-container {
  background-color: #043381;
  padding: 30px ;
  
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.footer-logo img {
  width: 180px;
}

.footer-info {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-right: 10px;
}


.footer-social {
  display: flex;
  align-items: center;
  gap: 15px; 
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-left: 10px;
  font-weight: 300;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-social p {
  margin: 0;
  font-size: 14px;
}

.logo-mobile {
  display: none;
  width: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    min-height: 100vh;
  }

  .video-section {
    display: none; 
  }

  .logo-mobile {
    display: block !important; 
    margin-bottom: 10px;
    width: 190px;
    margin-top: 20px;
  
  }

  .ingreso-section {
    width: 90%;
    box-shadow: none;
    background-color: #ffffff; 
    padding: 10px;
    border-radius: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ingreso-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* .navbar {
    display: none; 
  } */

  .footer-container{
    display: none;
  }
}

/* FORMS CLINICA Y PROFESIONAL DINAMICOS */
.error-message{
  top: -12px;
  left: 10px;
  position: relative;
  font-size: 14px;
}

.registro-form {
  display: none;
  width: 600px;
  padding: 10px;
}

.registro-form.active {
  display: block;
}
.registro-form h2 {
  font-size: 18px;
  font-weight: 400;
  color: #414141;
}

/* Inputs */
input, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #414141;
  font-size: 12px;
 color: #414141;
}

.input-group {
  display: flex;
  justify-content: space-between;

}


.input-group input, .input-group select {
  width: 48%;
 
}

.input-group input:first-child {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.input-group input:last-child {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}


.radio-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px; 
  width: 100%; 
  margin-bottom: 20px;
}

.radio-group label {
  font-size: 12px;
  margin-right: 5px;
  margin-left: 10px;
  
}

.radio-group input[type="radio"] {
  margin-right: 3px; 
  
  margin-top: 10px;
  width: 10px !important;
  height: 10px !important;

  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #ccc;
  background-color: #ccc; 
  cursor: pointer;
  border-radius: 0;

}
.radio-group input[type="text"] {
  width: 50%; 
  border-radius: 10px; 
}
.radio-group input[type="radio"]:checked {
  background-color: #000; 
}

.radio-buttons {
  width: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
}



#nombre-clinica {

  margin-top: 10px;
}

.guardar-btn {
  background-color: #16E0BD;
  border: none;
  padding: 5px;
  border-radius: 20px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 185px; 
  height: 40px;
  display: block;
  margin: 20px auto; 

}

.guardar-btn:hover {
  border: 1px solid #16E0BD;
  background-color: white;
  color: #414141;
}

/* Párrafo debajo del formulario */
.registro-form p {
  font-size: 10px;
  color: #666666;
  margin-top: -10px;
}

@media (max-width: 768px) {
  .registro-form {
    width: 350px;
    padding: 10px;
    margin-top: 30px;
    
  }



  .radio-group {
    gap: 15px;
    flex-direction: column;
  }
  .radio-group input[type="text"] {
    width:330px; 
    
  }
 
  
  .radio-buttons {
    width: 100%;
  }
  
  .radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
  }

  .guardar-btn {
    width: 100%;
  }
}