﻿/* 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;
  }
}

.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: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/*Inicio: Css Para el AuthController Index*/
.login {
    min-height: 100vh;
}

.bg-image {
    background-image: url('../images/login/loginnueva.png'); /*banner-principal.jpg*/
    background-size: cover;
    background-position: center;
}

.login-heading {
    /* font-weight: 300; */
    text-align: center;
    color: black;
}

.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
}
/*Fin Css Para el AuthController Index*/

.right {
    padding-top: 10px;
    padding-left: 10px;
    margin-left: 10px;
    position: relative;
    float: left;
    width: 45%;
    border: steelblue solid 1px;
    height: auto;
}

.btn-circle {
    width: 50px;
    height: 50px;
    padding: 13px 18px;
    border-radius: 60px;
    font-size: 15px;
    text-align: center;
}

/*ESTILO PARA APROBACION DE PATIO*/
/* Estilo para el checkbox */
.check-box {
    width: 25px; 
    height: 25px; 
    transform: scale(1.0); 
}

/*:::ESTILO PARA COLOCAR CARGANDO*/

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*FIN*/

/*Estilo para colocar borde al rededor*/

.border-Transparente-link {
    border: 2px solid #007bff; /* Color del borde */
    border-radius: 0.25rem; /* Radio de los bordes */
    padding: 0.5rem 1rem; /* Espaciado interno */
    text-decoration: none; /* Quitar subrayado */
    display: inline-block; /* Para que el borde se ajuste al contenido */
    background-color: transparent; /* Fondo transparente */
    color: #007bff; /* Color del texto */
    transition: background-color 0.3s, color 0.3s; /* Transiciones suaves */
}

.border-Transparente-link:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Fondo azul claro al pasar el mouse */
    color: #0056b3; /* Color del texto al pasar el mouse */
}

/*:::Diseño para login::::*/

.diseño_login {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


.PosiTop {
    position: absolute;
    bottom: 0;
    width: 100%;
}