
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}
.container, .login-container, .register-container, .reset-container {
    max-width: 450px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #082C6C;
}
form .input-group {
    position: relative;
}
form .input-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}
form input, form select {
    width: 100%;
    padding: 12px 12px 12px 35px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}
form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #082C6C;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
form button i {
    margin-right: 6px;
}
form button:hover {
    background-color: #041a44;
}
a {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #082C6C;
    font-size: 14px;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
form .error, form .message {
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}
form .error {
    background-color: #f8d7da;
    color: #721c24;
}
form .message.success {
    background-color: #d4edda;
    color: #155724;
}
.sidebar {
    width: 240px;
    background-color: #082C6C;
    color: white;
    position: fixed;
    height: 100vh;
    padding: 30px 20px;
}
.sidebar h2 {
    font-size: 18px;
    margin-bottom: 30px;
}
.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 15px 0;
    font-size: 15px;
}
.sidebar a i {
    margin-right: 8px;
}
.sidebar a:hover {
    text-decoration: underline;
}

.content {
    flex-grow: 1;
    padding: 30px;
    background-color: #f0f2f5;
    overflow-x: auto;
    min-height: 100vh;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}



.dashboard {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 240px;
    background-color: #082C6C;
    color: white;
    padding: 30px 20px;
    flex-shrink: 0;
}
.sidebar h2 {
    font-size: 18px;
    margin-bottom: 30px;
}
.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 15px 0;
    font-size: 15px;
}
.sidebar a i {
    margin-right: 8px;
}
.sidebar a:hover {
    text-decoration: underline;
}

.content {
    flex-grow: 1;
    padding: 30px;
    background-color: #f0f2f5;
    overflow-x: auto;
    min-height: 100vh;
}


.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}
th, td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}
