
.hero {
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(145deg, rgba(242, 249, 246, 0.95), rgba(198, 236, 225, 0.75));
    background-color: #000;
    width: 100vw;
    margin: calc(50% - 50vw);
    min-height: 100dvh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(4.5rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
}

    .hero h1 {
        font-size: clamp(3rem, 8vw, 6rem) !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        margin-bottom: 2rem !important;
        letter-spacing: -0.02em !important;
        text-shadow: none !important;
    }

    .hero .tagline {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 300;
        font-style: italic;
        opacity: 0.9;
        margin-bottom: 3rem;
    }

    .hero .subtitle {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
        font-weight: 400;
        opacity: 0.8;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

.login-hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: white;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.login-hero-button:hover {
    background-color: black;
    color: white;    
    border: 2px solid black;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-hero-link {
    flex: 0 1 auto;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.login-hero-link:hover {
    color: #ffffff;
}
.login-hero-links {
    display: flex;
    align-items: center;
    gap: 1rem !important;
}

.login-hero-input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
}

.login-hero-input {
    display: block;
    width: 100%;
    padding: 0.9rem 1.25rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-right: 0;
    flex: 1 1 auto;
    max-width: none;
    text-align: center;
    box-sizing: border-box;
}

.login-hero-input:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.96);
}

.login-hero-input:not(:placeholder-shown) {
    background-color: #000000;
    color: white;
    border: 2px solid #000000;
}

.login-hero-input.is-active {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.login-hero-input:-webkit-autofill,
.login-hero-input:-webkit-autofill:hover,
.login-hero-input:-webkit-autofill:focus,
.login-hero-input:-webkit-autofill:active {
    -webkit-text-fill-color: white;
    box-shadow: 0 0 0 1000px #000000 inset;
    border: 2px solid #000000;
}

.FlexContainerRow{
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
}

.login-hero-links {
    width: 100%;
    max-width: 17rem;
    justify-content: space-between;
    margin: 0.1rem auto 0;
}

.FlexContainerRow:has(.login-hero-input:only-child) {
    max-width: 17rem;
}

.hero .tagline {
    margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
    .FlexContainerRow {
        flex-direction: row;
        max-width: 46rem;
    }

    .FlexContainerRow:has(.login-hero-input:only-child) {
        max-width: 23rem;
    }

    .login-hero-links {
        max-width: 23rem;
    }
}
