/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === BODY === */
body.auth-body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* === CARD === */
.auth-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* === TITLE === */
.auth-card h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* === INPUTS === */
.auth-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* === BUTTON === */
.auth-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.auth-btn:hover {
    background: #2563eb;
}

/* === DASHBOARD === */
.dashboard {
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background: #0f172a;
    padding: 1.5rem;
    color: white;
}

.sidebar h2 {
    margin-bottom: 2rem;
}

.sidebar a {
    display: block;
    margin-bottom: 1rem;
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.2s;
}

.sidebar a:hover {
    color: white;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    background: #f1f5f9;
    padding: 2rem;
}

.topbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo-center {
	font-family: 'Futura Condensed';
	font-weight: 200;
	text-transform: uppercase;
	color: white;
	font-size: 2rem;
	justify-content: center;
	display: flex;
	letter-spacing: 3px;

}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    background-color: #0B2A4A;
    color: white;
    z-index: 1000;
	
}
@font-face {
    font-family: "Futura Condensed";
    src: url("/static/fonts/futuracondensed.woff2") format("woff2"),
         url("/static/fonts/futuracondensed.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
