  /* Login specific styles */

:root {
  --airica-blue: #0340ff;
  --airica-muted-blue: #667eea;
  --airica-green: #74de85;
  /* --airica-blue-gradient: linear-gradient(135deg, #0340ff 0%, #1263ff 100%); */
  /* --airica-blue-gradient: linear-gradient(135deg, var(--airica-blue) 0%, var(--airica-muted-blue) 100%); */
  --airica-blue-gradient: linear-gradient(135deg, var(--airica-muted-blue) 30%, var(--airica-blue) 100%);
  /* --airica-alternate-gradient: linear(0deg, var(--airica-muted-blue) 0%, var(--airica-blue) 100%); */
}


body {
    font-family: 'Inter', sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: var(--airica-blue-gradient);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}


.login-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  position:relative;    /* establishes stacking context for children */
  overflow:hidden;      /* ensure the video doesn’t spill out */
}

/* new */
.bg-video{
  position:absolute;    /* pin to the container */
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;     /* scale like background-size: cover */
  z-index:0;            /* behind other content in this container */
  pointer-events:none;  /* don’t intercept clicks */
}


.logo {
    position: relative;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    z-index: 2;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.login-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    opacity: 85%;
}

.client-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.client-logo img {
    width: 120px;
    height: auto;
}

.login-content h1 {
    color: #1a202c;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-content p {
    color: #718096;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.btn-blue {
    background: linear-gradient(135deg, #3366FF 0%, #0052CC 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(51, 102, 255, 0.3);
    background: linear-gradient(135deg, #0052CC 0%, #3366FF 100%);
}

.btn-blue:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(51, 102, 255, 0.3);
}

.btn-blue:disabled {
    background: #e2e8f0;
    color: #a0aec0;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

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

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

footer {
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    padding: 1rem 0;
}

footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo {
    top: 1rem;
    left: 1rem;
    }

    .login-container {
    margin: 1rem;
    padding: 2rem;
    }

    .main-content {
    padding: 1rem;
    }
}
