/* Official UJ Palette */
:root {
    --uj-orange: #FF6600;
    --uj-purple: #2C1B4E;
    --uj-bg: #f0f2f5;
    --uj-white: #ffffff;
    --uj-text: #333333;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--uj-bg);
    margin: 0;
    color: var(--uj-text);
}

/* uLink Style Top Bar */
.header {
    background-color: var(--uj-purple);
    padding: 10px 50px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid var(--uj-orange);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.uj-logo-img {
    height: 60px; /* Adjust based on your png aspect ratio */
    width: auto;
}

/* Login Card Layout */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.login-card {
    background: var(--uj-white);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-top: 5px solid var(--uj-orange);
}

.login-card h2 {
    color: var(--uj-purple);
    text-align: center;
    margin-top: 0;
    font-weight: 600;
}

/* Form Styling */
.form-group { margin-bottom: 15px; }

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

input[type="text"], input[type="password"], select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

/* Button - The "uLink Orange" Button */
.btn-primary {
    background-color: var(--uj-orange);
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #e65c00;
}

/* Navigation for Dashboards */
.navbar {
    background: white;
    padding: 10px 50px;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: var(--uj-purple);
    font-weight: 600;
}