﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.hand-cursor {
 cursor: pointer;
}
.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 200px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  text-align:center;
  line-height: 50px; /* Vertically center the text there */
}
footer .social-icons {
 display: flex;
 justify-content: center; /* Centrar los iconos */
 gap: 20px; /* Espaciado entre los iconos */
}

 footer .social-icons a {
  text-decoration: none; /* Elimina el subrayado */
  font-size: 30px; /* Aumenta el tamaño de los iconos */
  color: #f97316; /* Color naranja (puedes ajustar el tono aquí) */
  transition: color 0.3s ease, transform 0.3s ease; /* Transición para el color y el tamaño */
 }

  footer .social-icons a:hover {
   color: #ff6600; /* Color naranja más intenso cuando se pasa el ratón */
   transform: scale(1.1); /* Aumenta ligeramente el tamaño al pasar el mouse */
  }

 /* Específicos para cada red social (si quieres colores distintivos) */
 footer .social-icons .youtube {
  color: #FF0000; /* Rojo de YouTube */
 }

 footer .social-icons .instagram {
  color: #E4405F; /* Rosa de Instagram */
 }

 footer .social-icons .twitter {
  color: #1DA1F2; /* Azul de Twitter */
 }

 footer .social-icons .linkedin {
  color: #0077B5; /* Azul de LinkedIn */
 }


.password-container {
 position: relative;
 display: inline-block;
}

 .password-container input {
  padding-right: 40px;
 }

 .password-container .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer !important;
  font-size: 18px;
  color: #888;
 }


.btn-orange {
 background-color: #ff6600; /* Naranja para los botones */
 color: #e0e0e0; /* Color claro para el texto en los botones */
 padding: 12px 30px;
 border-radius: 10px;
 font-size: 18px;
 transition: background-color 0.3s;
}
 .btn-orange:hover {
  background-color: #e65c00; /* Naranja más oscuro al pasar el mouse */
 }

.carousel-image {
 max-width: 100%; /* Asegura que la imagen no se estire más allá del contenedor */
 height: auto; /* Mantiene la proporción de la imagen */
 max-height: 1px; /* Limita la altura máxima de la imagen */
}
