* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}
header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 2rem;
    height: 2rem;
    /* background-color: #0284c7; */
    border-radius: 50%;
}

.logo span {
    font-size: 1.25rem;
    font-weight: bold;
    color: #030;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: #030;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
    color: #339933;
}

.nav-button {
    background-color: #339933;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #196819;
}

.mobile-menu {
    display: none;
}

.mobile-menu button {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #030;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
    padding: 0.75rem 0;
    color: #030;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover, .mobile-nav a.active {
    color: #339933;;
}

.mobile-nav.active {
    display: flex;
}

/* Split Login Page Styles */
.split-login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-image {
    flex: 1;
    background-image: url('/index/images/pic_slide.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(12, 74, 110, 0.8), rgba(12, 74, 110, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-content {
    color: white;
    text-align: center;
    max-width: 400px;
}

.image-content h1 {
    font-size: 2.5rem;
    margin: 2rem 0 1rem;
}

.image-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.login-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: white;
}

.login-header {
    margin-bottom: 2rem;
}

.back-link {
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #0284c7;
}

.login-form-content {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.login-form-content h2 {
    font-size: 1.75rem;
    color: #030;
    margin-bottom: 0.5rem;
}

.login-form-content > p {
    color: #64748b;
    margin-bottom: 2rem;
}

.login-form {
    margin-bottom: 2rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.input-with-icon input {
    padding-left: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}


input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #030;
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.25);
}

textarea {
    resize: vertical;
}

.login-button, .submit-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #339933;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover, .submit-button:hover {
    background-color: #030;
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.forgot-password {
    font-size: 0.75rem;
    color: #0284c7;
}

.forgot-password:hover {
    color: #0369a1;
}


/* Responsive styles */
@media (max-width: 1024px) {

    .split-login-container {
        flex-direction: column;
    }
    
    .login-image {
        min-height: 250px;
    }
}
@media (max-width: 768px) {
	.nav-links {
        display: none;
    }
	.mobile-menu {
		display: block;
	}
    @media (max-width: 480px) {
        
        .login-form-container {
            padding: 1.5rem;
        }
    }
}
/*Modal */
.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}