.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: radial-gradient(circle at center, #fff0f3 0%, #ffe3e8 100%);
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-top: -10px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    perspective: 1000px;
}

.auth-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-box h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: transparent;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
    background: var(--white);
    padding: 0 5px;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.switch-auth {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.switch-auth a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.switch-auth a:hover {
    text-decoration: underline;
}