body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 600;
}

label {
    font-weight: 500;
}

input, select, button {
    font-family: inherit;
}
.blur-text {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
}


/* Center Section */
.register-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* Card */
.register-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Title */
.register-card h2 {
    text-align: center;
    margin-bottom: 6px;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

/* Input Groups */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    outline: none;
}

/* Button */
.register-btn {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.register-btn:hover {
    background: #1e4ed8;
}

/* Bottom text */
.bottom-text {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

.bottom-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Login Section */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 6px;
    font-weight: 600;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: #15803d;
}
/* HERO BACKGROUND */
.hero-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 90px 0;
}

/* SEARCH CARD */
.search-card {
    background: #ffffff;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

/* JOB SECTION */
.job-section {
    background: #f8f9fa;
}

/* Job Card Styling */
.job-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
/* ========================
   NAVBAR
======================== */
.navbar{
    padding:15px 25px;
}

/* ========================
   SIDEBAR
======================== */
.sidebar{
    background:#ffffff;
    min-height:100vh;
    border-right:1px solid #e5e7eb;
}

.sidebar .nav-link{
    color:#374151;
    font-weight:500;
    border-radius:8px;
    padding:10px 15px;
    margin-bottom:5px;
    transition: 0.2s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active{
    background:#0d6efd;
    color:#fff;
}

/* ========================
   CARDS
======================== */
.card{
    border:none;
    border-radius:12px;
}

.card-header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    font-weight:600;
}

/* ========================
   TABLE
======================== */
.table th{
    background:#f9fafb;
    font-weight:600;
}

.table td{
    vertical-align:middle;
}

/* ========================
   BUTTONS
======================== */
.btn{
    border-radius:8px;
}

/* ========================
   ALERT
======================== */
.alert{
    border-radius:8px;
}

.divider {
    text-align: center;
    margin: 15px 0;
    color: #888;
}

.google-btn img {
    width: 220px;
    display: block;
    margin: 0 auto;
}
