/* assets/css/style.css */
:root {
    --primary-color: #ff0000;
    --secondary-color: #282828;
    --accent-color: #3ea6ff;
    --bg-dark: #0f0f0f;
    --text-light: #ffffff;
    --card-bg: #1e1e1e;
    --glass: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Authentication Pages */
.auth-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--glass);
    background: #2a2a2a;
    color: white;
    outline: none;
    transition: 0.3s;
}

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

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #cc0000;
}

.auth-links {
    text-align: center;
    margin-top: 15px;
}

.auth-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
}

/* Dashboard */
.nav {
    background: var(--secondary-color);
    padding: 15px 0;
    margin-bottom: 30px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--glass);
    color: var(--text-light) !important;
}

.card h1,
.card h2,
.card h3,
.card h4 {
    color: var(--text-light) !important;
    margin-bottom: 20px;
}

table {
    color: var(--text-light) !important;
}

table th {
    color: var(--primary-color) !important;
    font-weight: 600;
}

table td {
    color: var(--text-light) !important;
}

/* Form inputlari ko'rinishi */
input,
select,
textarea {
    color: white !important;
}