/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* ROOT THEME */
:root {
    --primary: #0072ff;
    --secondary: #00c6ff;
    --bg: #0f172a;
    --card: rgba(255,255,255,0.05);
    --text: #e2e8f0;
}

/* BODY */
body {
    height: 100vh;
    background: var(--bg);
    color: var(--text);
}

/* MAIN */
.main-container {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE */
.left-section {
    flex: 1;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-section h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text; /* ✅ ADD THIS */
    color: transparent;
}

.tagline {
    margin-top: 10px;
    opacity: 0.8;
}

/* FEATURES */
.features p {
    margin: 10px 0;
    opacity: 0.9;
}

/* RIGHT SIDE */
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FORM */
.form-box {
    width: 350px;
    background: var(--card);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* INPUT */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,114,255,0.4);
}

/* SWITCH */
.switch-text {
    margin-top: 15px;
    text-align: center;
}

.switch-text span {
    color: #00c6ff;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
}