/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9e9;
    color: #333;
}

/* Flexbox container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Login Page */
.login-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-container h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.login-container input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    max-width: 100%;
}

.login-container button {
    background-color: #2d6a4f;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.login-container button:hover {
    background-color: #1b4332;
}

/* Login Page Styles */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: #F5F5DC;
}

.login-main {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-identity {
    text-align: center;
    margin-bottom: 48px;
}

.brand-title {
    font-size: 40px;
    font-weight: 700;
    color: #181d17;
    margin-bottom: 8px;
}

.brand-subtitle {
    font-size: 16px;
    color: #40493d;
}

.login-card {
    width: 100%;
    background-color: #F5F5DC;
    border: 1px solid rgba(112, 122, 108, 0.3);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px -2px rgba(46, 125, 50, 0.08);
}

.login-card input {
    box-sizing: border-box;
    max-width: 100%;
}

.login-header {
    margin-bottom: 24px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #181d17;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #40493d;
    letter-spacing: 0.02em;
}

.form-group {
    margin-bottom: 24px;
}

.input-wrapper {
    position: relative;
}

.icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #707a6c;
}

input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid rgba(112, 122, 108, 0.3);
    border-radius: 8px;
    background-color: #f7fbf0;
    font-size: 16px;
    line-height: 1.5;
    outline: none;
    transition: all 0.2s;
}

input:focus {
    border-color: #1b6d24;
    box-shadow: 0 0 0 2px rgba(27, 109, 36, 0.2);
}

.forgot-password {
    font-size: 12px;
    color: #0d631b;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    text-decoration: underline;
    color: #1b6d24;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #0d631b;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover {
    background-color: #2e7d32;
}

/* Background*/
.background-decorative {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -10;
    width: 33%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.background-decorative .primary-circle {
    position: absolute;
    top: 10%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-color: #0d631b;
    border-radius: 50%;
    filter: blur(120px);
}

.background-decorative .tertiary-circle {
    position: absolute;
    bottom: 20%;
    right: -40%;
    width: 400px;
    height: 400px;
    background-color: #923357;
    border-radius: 50%;
    filter: blur(100px);
}

/* Dashboard Page */
.dashboard-container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

/* Dashboard Page Styles */
.bg-light {
    background-color: #f7fbf0;
    color: #181d17;
    font-family: 'Manrope', sans-serif;
}

.sidebar {
    position: fixed;
    inset: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    width: 280px;
    height: 100vh;
    border-right: 1px solid #d7dbd2;
    background-color: #f1f5f2;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-header {
    margin-bottom: 40px;
}

.sidebar-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0d631b;
}

.sidebar-header p {
    font-size: 12px;
    color: #707a6c;
    text-transform: uppercase;
    margin-top: 4px;
}

.sidebar-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #5e604d;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.2s;
}

.sidebar-nav a.active {
    background-color: rgba(231, 235, 226, 0.5);
    color: #0d631b;
    border-left-color: #0d631b;
}

.sidebar-nav a:hover {
    background-color: #e1e1c9;
    color: #0d631b;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(112, 122, 108, 0.3);
}

.new-project {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0d631b;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.new-project:hover {
    opacity: 0.9;
}

.main-content {
    margin-left: 300px; 
    min-height: 100vh;
    padding: 2rem; 
    background-color: #f7fbf0;
}

.welcome-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #181d17;
    margin-bottom: 16px;
}

.welcome-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #40493d;
    max-width: 720px;
}

.sidebar {
    padding-bottom: 2rem;
}