@charset "utf-8";
/* CSS Document */
:root {
    --primary: #7b1e1e;
    --primary-dark: #5e1515;
    --gold: #d4a017;
    --bg-soft: #f7f4ee;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 18px;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #f7f4ee 0%, #fffdf8 100%);
    color: var(--text);
    min-height: 100vh;
}

.student-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.student-auth-card {
    width: 100%;
    max-width: 980px;
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}

.student-auth-left {
    background: linear-gradient(135deg, rgba(123,30,30,0.96), rgba(94,21,21,0.95));
    color: #fff;
    padding: 48px;
    position: relative;
}

.student-auth-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,160,23,0.25), transparent 35%);
    pointer-events: none;
}

.student-auth-brand {
    position: relative;
    z-index: 1;
}

.student-auth-brand h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.student-auth-brand p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

.student-auth-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.student-auth-right {
    padding: 42px 34px;
    background: #fff;
}

.form-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--muted);
    margin-bottom: 28px;
}

.form-label {
    font-weight: 600;
    color: #374151;
}

.form-control {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding-left: 14px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.18rem rgba(123,30,30,0.15);
}

.btn-student {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-student:hover {
    color: #fff;
    transform: translateY(-1px);
}

.auth-note {
    background: #fff8e7;
    border: 1px solid #f5deb0;
    color: #7a5a00;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
}

.dashboard-shell {
    min-height: 100vh;
    background: #f6f7fb;
}

.dashboard-topbar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.dashboard-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    padding: 24px;
    height: 100%;
}

.info-label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-value {
    font-weight: 700;
    color: #111827;
}

.student-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.quick-badge {
    display: inline-block;
    padding: 10px 14px;
    background: #f3f4f6;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 4px 8px 4px 0;
}

@media (max-width: 991.98px) {
    .student-auth-card {
        grid-template-columns: 1fr;
    }

    .student-auth-left,
    .student-auth-right {
        padding: 28px 22px;
    }
}
.btn-dark-mini{
    display:inline-block;
    padding:10px 14px;
    border-radius:12px;
    background:#111827;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.2s ease;
}

.btn-dark-mini:hover{
    background:#000;
    color:#fff;
}

