* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F3F4F6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.page-wrapper {
    width: 100%;
    max-width: 960px;
}

.login-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    min-height: 600px;
}

/* LEFT PANEL */
.left-panel {
    width: 45%;
    background-color: #1B1E2E;
    color: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sub-heading {
    font-size: 15px;
    color: #38B285;
    margin-bottom: 48px;
    line-height: 1.5;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(0, 133, 96, 0.2);
    border-radius: 5px;
}

.feature-icon img {
    height: 16px;
    width: 16px;
}

.feature-text h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #F8FAFC;
}

.feature-text p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.5;
}

.image-container {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* RIGHT PANEL */
.right-panel {
    width: 55%;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.label-row label {
    margin-bottom: 0;
}

.forgot-link {
    font-size: 13px;
    color: #036940;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.login-form input:focus {
    border-color: #036940;
}

.login-form input::placeholder {
    color: #9CA3AF;
}

.password-wrapper {
    position: relative;
}

.toggle-visibility {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0;
    display: flex;
}

.toggle-visibility:hover {
    color: #4B5563;
}

/* Custom Checkbox */
.remember-me {
    margin-bottom: 24px;
}

.checkbox-container {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: #4B5563;
    font-weight: 400 !important;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.checkbox-container:hover input~.checkmark {
    border-color: #036940;
}

.checkbox-container input:checked~.checkmark {
    background-color: #036940;
    border-color: #036940;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 4.5px;
    top: 1.5px;
    width: 3.5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #036940;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.btn-primary:hover {
    background-color: #025332;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}

.divider span {
    padding: 0 16px;
    color: #6B7280;
    font-size: 12px;
    font-weight: 500;
}

.btn-social {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    color: #374151;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s;
    font-family: inherit;
    margin-bottom: 32px;
}

.btn-social:hover {
    background-color: #F9FAFB;
}

.register-text {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
}

.register-text a {
    color: #036940;
    text-decoration: none;
    font-weight: 600;
}

.register-text a:hover {
    text-decoration: underline;
}

@media (max-width: 860px) {
    .login-card {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        padding: 40px;
    }

    .right-panel {
        padding: 40px 32px;
    }
}