@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

html {
  font-size: 14px;
}

.footer {
    background: #0a1628;
    padding: 2rem;
    text-align: center;
    color: #ffffffe0;
    width: 100%;
    position: sticky;
    bottom: 0;
}

.footer-slogan {
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-main {
    border: none;
    background-color: #60a5fa;
    color: #fff;
    transition: background-color .1s ease-in-out;
}

.btn-main:hover {
    background-color: #4573af;
    color: #fff;
}

.btn-sec {
    border: none;
    background-color: #3f4756;
    color: #fff;
    transition: background-color .1s ease-in-out;
}

.btn-warn {
    background-color: #25b971;
    border: none;
    color: #fff;
}

.btn-warn:hover {
    background-color: #156842;
    color: #fff;
    border: none;
}

.btn-sec:hover {
    background-color: #262c34;
    color: #fff;
}

.btn-dang {
    background-color: #ff7766;
    border: none;
    color: #fff;
}

.btn-dang:hover {
    background-color: #803934;
    border: none;
    color: #fff;
}

.btn-suc {
    background-color: #25b971;
    border: none;
    color: #fff;
}

.btn-suc:hover {
    background-color: #125736;
    color: #fff;
}


html {
  position: relative;
  min-height: 100%;
}

body {
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin-bottom: 60px;
    font-family: Inter,sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(0, 31, 63, 0.9);
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.container-main {
    flex: 1;
    width: 80% !important;
    margin: 0 auto;
}

.page-content {
    margin-top: 100px;
}

.custom-btn {
    color: #fff !important;
    padding: 5px;
    border: none;
    background: transparent;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .15s ease-in-out;
}

.custom-btn:hover {
    color: #333 !important;
    background-color: #fff;
}

.gradient-background {
    background: linear-gradient(to bottom, #121212, #444544);
}

.circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.imagenComprobFront {
    opacity: 0;
    transition: all ease-in-out .2s;
}

.imagenComprobFront:hover {
    opacity: 1;
}

.header-direct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    background-color: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-direct-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: .25rem .5rem;
    border-radius: 8px;
    background: #ffffff;
}

.header-direct-logo {
    height: 42px;
    width: auto;
}

.header-direct nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-link-direct {
    color: #ffffffe0 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link-direct:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.nav-link-direct--accent {
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 0.5rem;
}

.nav-link-direct--accent:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.login-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
}

.login-header {
    font-family: "Source Serif 4", serif;
    font-size: clamp(1.5rem,3.5vw,2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .02em;
}