body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f4f7fe;
    margin: 0;
    color: #2B3674;
}

/* ... (Login styles remain similar but updated font) ... */
.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Home Page Styles - Dashboard Layout */
.dashboard-container {
    width: 100%;
    min-height: 100vh;
    background-color: #f4f7fe;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 20px;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #4318FF;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 6px 15px 6px 6px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.user-profile .avatar {
    width: 32px;
    height: 32px;
    background-color: #4318FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.user-name {
    font-weight: 500;
    font-size: 14px;
}

.logout-btn-header {
    background: white;
    border: none;
    color: #E74C3C;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logout-btn-header:hover {
    background-color: #E74C3C;
    color: white;
    transform: translateY(-2px);
}

.welcome-section {
    margin-bottom: 40px;
    padding: 0 10px;
}

.welcome-section h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #2B3674 0%, #4318FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-section p {
    color: #A3AED0;
    font-size: 18px;
    margin: 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 10px;
}

.section-header h3 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.report-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4318FF, #00D4FF);
    opacity: 0;
    transition: opacity 0.3s;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(67, 24, 255, 0.1);
}

.report-card:hover::before {
    opacity: 1;
}

.card-icon {
    background: linear-gradient(135deg, #F4F7FE 0%, #E6EEFF 100%);
    color: #4318FF;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.report-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-content h4 {
    margin: 0 0 12px;
    color: #2B3674;
    font-size: 22px;
    font-weight: 700;
}

.card-content p {
    color: #A3AED0;
    margin: 0 0 30px;
    line-height: 1.6;
    font-size: 15px;
}

.generate-btn {
    background: linear-gradient(90deg, #4318FF 0%, #5631FF 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(67, 24, 255, 0.2);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 24, 255, 0.3);
}

/* Login Box Updates */
.login-box {
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.input-group input {
    padding: 15px;
    border-radius: 12px;
    background-color: #F4F7FE;
    border: 1px solid transparent;
}

.input-group input:focus {
    background-color: white;
    border-color: #4318FF;
    outline: none;
}

/* Login Page Specific Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f7fe;
    padding: 20px;
    background-image: radial-gradient(circle at 10% 20%, rgba(67, 24, 255, 0.05) 0%, transparent 20%),
                      radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 20%);
}

.login-card {
    background: white;
    width: 100%;
    max-width: 480px;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    text-align: center;
}

.login-header {
    margin-bottom: 40px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4318FF 0%, #00D4FF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(67, 24, 255, 0.2);
}

.login-header h1 {
    font-size: 32px;
    color: #2B3674;
    margin: 0 0 10px;
    font-weight: 700;
}

.login-header p {
    color: #A3AED0;
    font-size: 16px;
    margin: 0;
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    color: #2B3674;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #A3AED0;
    font-size: 16px;
    transition: color 0.3s;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 16px;
    border: 1px solid transparent;
    background-color: #F4F7FE;
    font-size: 15px;
    color: #2B3674;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

.input-wrapper input:focus {
    background-color: white;
    border-color: #4318FF;
    outline: none;
    box-shadow: 0 0 0 4px rgba(67, 24, 255, 0.05);
}

.input-wrapper input:focus + i {
    color: #4318FF;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #A3AED0;
    cursor: pointer;
}

.remember-me input {
    accent-color: #4318FF;
    width: 16px;
    height: 16px;
}

.forgot-link {
    color: #4318FF;
    text-decoration: none;
    font-weight: 500;
}

.login-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #4318FF 0%, #5631FF 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(67, 24, 255, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(67, 24, 255, 0.3);
}

.message {
    margin-top: 20px;
    font-size: 14px;
    min-height: 20px;
}

