/* Login Page Specific Styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #0b1520; /* neutral base under container gradient */
    overflow-x: hidden;
}

.login-header {
    padding: 40px 20px 20px;
    text-align: center;
    z-index: 100;
}

.login-logo {
    width: 60px;
    height: 60px;
}

.login-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    position: relative;
    background: var(--diamond-gradient);
    min-height: 100vh;
}

/* Brand lockup above the form */
.brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.brand-logo {
    width: auto;
    height: 50px;
}

.brand-lockup .brand-name {
    font-family: 'Cabin', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.2px;
    color: var(--ocean-blue);
}

.login-form {
    width: 100%;
    max-width: 420px;
    padding: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 10;
    position: relative;
    margin-top: 64px;
    overflow: hidden;
}

.login-form::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: var(--iridescent-gradient-light-20);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.login-form h1 {
    margin-bottom: 8px;
    font-family: 'Hedvig Letters Serif', serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: center;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #2a2a2a;
    text-align: center;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #fff;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.form-group input:focus {
    outline: none;
    border-color: var(--dolphin-blue);
}

.login-form .btn {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    background: linear-gradient(90deg, var(--aero-green) 0%, var(--dolphin-blue) 100%);
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 160, 213, 0.3);
}

footer {
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    padding: 20px 5%;
    margin-top: 40px;
}

/* Floating Service Cards */
.floating-cards-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-service-card {
    position: absolute;
    width: 100px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInOut 16s infinite;
    z-index: 1;
}

.floating-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.floating-card-overlay h3 {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: scale(0.9); }
    10%, 90% { opacity: 0.8; transform: scale(1); }
}

/* Responsive */
@media (max-width: 1200px) {
    .vertical-marquee-left,
    .vertical-marquee-right {
        width: 200px;
    }
    
    .vertical-service-card {
        width: 160px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .vertical-marquee-left,
    .vertical-marquee-right {
        display: none;
    }
}
