/* RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* ================= LOGIN ================= */

.login-body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f9d58, #34a853);
}

.login-container {
    display: flex;
    width: 900px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.login-left {
    flex: 1;
    background: #0f9d58;
    color: white;
    padding: 50px;
}

.login-left h1 {
    font-size: 32px;
}

.login-card {
    flex: 1;
    padding: 50px;
}

.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.login-card button {
    width: 100%;
    padding: 12px;
    background: #0f9d58;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.login-card button:hover {
    background: #0c7a44;
}

/* ================= SISTEMA ================= */

.layout {
    display: flex;
    height: 100vh;
}

/* MENU LATERAL */
.sidebar {
    width: 230px;
    background: #0f9d58;
    color: white;
    padding: 20px;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 5px;
}

.sidebar li:hover {
    background: #34a853;
}

/* CONTEÚDO */
.content {
    flex: 1;
    background: #f4f6f9;
    display: flex;
    flex-direction: column;
}

header {
    background: white;
    padding: 15px 25px;
    display: flex;
    justify-content: flex-end;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header button {
    background: #0f9d58;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

header button:hover {
    background: #0c7a44;
}

#page-content {
    padding: 30px;
}
