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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

.page-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel */
.left-panel {
    width: 50%;
    background-color: #161928;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.left-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

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

.brand .logo {
    width: 32px;
    height: 32px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #4BD496;
    line-height: 1;
}

.brand-sub {
    font-size: 10px;
    font-weight: 600;
    color: #377D6A;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-text {
    margin: 60px 0;
}

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

.sub-heading {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.image-overlay-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4BD496;
}

/* Right Panel */
.right-panel {
    width: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.right-content {
    max-width: 480px;
    width: 100%;
}

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

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

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

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

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #9CA3AF;
}

.input-with-icon input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.input-with-icon input:focus {
    border-color: #036940;
}

.input-with-icon input::placeholder {
    color: #9CA3AF;
}

.password-strength {
    margin-top: 8px;
}

.strength-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.strength-bars .bar {
    flex: 1;
    height: 4px;
    background-color: #E5E7EB;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.strength-bars .bar.active.weak {
    background-color: #EF4444;
}

.strength-bars .bar.active.moderate {
    background-color: #F59E0B;
}

.strength-bars .bar.active.strong {
    background-color: #059669;
}

.strength-text {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.strength-text.moderate,
.strength-text.strong {
    color: #059669;
}

.strength-text.weak {
    color: #EF4444;
}

.agreement-group {
    margin-top: 16px;
    margin-bottom: 32px;
}

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

.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;
    flex-shrink: 0;
}

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

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

.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);
}

.checkbox-text a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

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

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: #059669;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
    margin-bottom: 32px;
}

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

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

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

.divider span {
    padding: 0 16px;
    color: #6B7280;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    background-color: #fff;
    color: #374151;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    font-family: inherit;
}

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

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

.login-text a {
    color: #059669;
    text-decoration: none;
    font-weight: 700;
}

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

@media (max-width: 992px) {
    .page-container {
        flex-direction: column;
    }

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