* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at top, #1b1f3b, #0b0d17);
    color: #ffffff;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
}

.navbar nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #0015ff;
    font-size: 14px;
}

.btn-outline {
    padding: 8px 18px;
    border: 1px solid #6b6eff;
    border-radius: 20px;
}

/* HERO */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #8f9bff;
}

.hero p {
    font-size: 18px;
    color: #b9c0ff;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6b6eff, #8f9bff);
    color: #fff;
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(111, 120, 255, 0.35);
}

.note {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.8;
}

/* GLOW EFFECT */
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(143,155,255,0.35), transparent 70%);
    filter: blur(80px);
    top: 10%;
    z-index: 1;
}
/* AUTH PAGES */
.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 90px);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    text-align: center;
}

.auth-card h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #b9c0ff;
    margin-bottom: 30px;
}

.auth-card form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 10px;
}

.auth-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    outline: none;
}

.auth-card input::placeholder {
    color: #cfd3ff;
}

.btn-primary.full {
    width: 100%;
    margin-top: 10px;
}

.auth-note {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

.switch {
    margin-top: 20px;
    font-size: 14px;
}

.switch a {
    color: #8f9bff;
    text-decoration: none;
}
