/* VidStream Login — Responsive Styles */
:root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --bg: #0f0f0f;
    --card-bg: #1e1e1e;
    --text: #f5f5f5;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-container {
    width: 100%;
    max-width: 380px;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.brand {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form label {
    text-align: left;
    font-size: 0.9rem;
    color: #c7c7c7;
}

.login-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    background: #2b2b2b;
    color: var(--text);
    font-size: 1rem;
}

.login-form input:focus {
    outline: 2px solid var(--primary);
    background: #333;
}

button[type="submit"] {
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: var(--primary-dark);
}

.hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.hint a {
    color: var(--primary);
    text-decoration: none;
}

.hint a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .login-container {
        margin: 0 1rem;
    }

    .brand {
        font-size: 1.75rem;
    }
}
