
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            background: #fffae8;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: #ffa425;
            border-radius: 0 0 104% 36% / 0 0 217px 10px;
            z-index: 0;
        }

        body::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
            border-radius: 0 0 104% 36% / 0 0 217px 10px;
            z-index: 0;
            pointer-events: none;
        }

        .container {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .logo {
            width: 50px;
            height: 50px;
            background: #FFFFFF;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .logo svg {
            width: 28px;
            height: 28px;
        }

        .register-box {
            background: #FFFFFF;
            border-radius: 25px;
            padding: 25px 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .register-box h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #000;
            text-align: center;
        }

        .subtitle {
            font-size: 11px;
            color: #999;
            margin-bottom: 20px;
            line-height: 1.4;
            text-align: center;
        }

        .progress-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            position: relative;
        }

        .progress-line {
            position: absolute;
            top: 15px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #E5E5E5;
            z-index: 0;
        }

        .progress-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: #FDB756;
            transition: width 0.3s ease;
            width: 0%;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: #999;
            margin-bottom: 5px;
            transition: all 0.3s;
        }

        .step.active .step-circle {
            background: #FDB756;
            color: #000;
        }

        .step.completed .step-circle {
            background: #4CAF50;
            color: #fff;
        }

        .step-label {
            font-size: 10px;
            color: #999;
            text-align: center;
        }

        .step.active .step-label {
            color: #000;
            font-weight: 600;
        }

        #formMessage {
            display: none;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
            margin-bottom: 15px;
            padding: 12px 15px;
            border-radius: 15px;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
        }

        #formMessage.show {
            display: block;
        }

        #formMessage.error {
            color: #FF4444;
            background: #FFE8E8;
            border-color: #FF4444;
        }

        #formMessage.success {
            color: #4CAF50;
            background: #E8F5E9;
            border-color: #4CAF50;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #000;
            margin-bottom: 6px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper input,
        .input-wrapper select,
        .input-wrapper textarea {
            width: 100%;
            padding: 11px 12px;
            border: 1px solid #E5E5E5;
            border-radius: 20px;
            font-size: 12px;
            outline: none;
            transition: border-color 0.3s;
            font-family: "Poppins", sans-serif;
        }

        .input-wrapper input[type="password"],
        .input-wrapper input[type="text"].password-field {
            padding-right: 40px;
        }

        .toggle-icon {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .toggle-icon:hover {
            opacity: 0.7;
        }

        .input-wrapper textarea {
            resize: vertical;
            min-height: 80px;
        }

        .input-wrapper input:focus,
        .input-wrapper select:focus,
        .input-wrapper textarea:focus {
            border-color: #FDB756;
        }

        .input-wrapper input.error,
        .input-wrapper select.error,
        .input-wrapper textarea.error {
            border-color: #FF4444;
        }

        .error-message {
            display: none;
            color: #FF4444;
            font-size: 10px;
            margin-top: 4px;
        }

        .error-message.show {
            display: block;
        }

        .file-upload-container {
            margin-bottom: 15px;
        }

        .file-upload-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #000;
            margin-bottom: 6px;
        }

        .file-upload-box {
            border: 2px dashed #E5E5E5;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: #FAFAFA;
        }

        .file-upload-box:hover {
            border-color: #FDB756;
            background: #FFF9F0;
        }

        .file-upload-box.has-file {
            border-style: solid;
            border-color: #4CAF50;
            background: #E8F5E9;
        }

        .file-upload-icon {
            font-size: 30px;
            color: #999;
            margin-bottom: 8px;
        }

        .file-upload-text {
            font-size: 11px;
            color: #666;
            margin-bottom: 5px;
        }

        .file-upload-hint {
            font-size: 9px;
            color: #999;
        }

        .file-preview {
            display: none;
            position: relative;
            /* margin-top: 10px; */
        }

        .file-preview.show {
            display: block;
        }

        .preview-image {
            width: 80px;
            height: 60px;
            object-fit: cover;
            /* border-radius: 8px; */
            margin: 0 auto;
            display: block;
            /* border: 2px solid #E5E5E5; */
        }

        .remove-file {
            position: absolute;
            top: -6px;
            right: calc(50% - 46px);
            width: 20px;
            height: 20px;
            background: #FF4444;
            border-radius: 50%;
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            line-height: 1;
            transition: background 0.3s;
        }

        .remove-file:hover {
            background: #CC0000;
        }

        input[type="file"] {
            display: none;
        }

        .button-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: "Poppins", sans-serif;
        }

        .btn-next,
        .btn-submit {
            background: #FDB756;
            color: #000;
        }

        .btn-next:hover,
        .btn-submit:hover {
            background: #FCA726;
        }

        .btn-prev {
            background: transparent;
            color: #FDB756;
            border: 2px solid #FDB756;
        }

        .btn-prev:hover {
            background: #FDB756;
            color: #000;
        }

        .btn:disabled {
            background: #E5E5E5;
            color: #999;
            cursor: not-allowed;
        }

        .login-section {
            text-align: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #E5E5E5;
        }

        .login-text {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
        }

        .btn-login {
            width: 100%;
            padding: 12px;
            background: transparent;
            color: #FDB756;
            border: 2px solid #FDB756;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: "Poppins", sans-serif;
        }

        .btn-login:hover {
            background: #FDB756;
            color: #000;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 12px;
            font-size: 10px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #FDB756;
        }

        .footer-links span {
            color: #E5E5E5;
        }

        @media (max-width: 480px) {
            body::before {
                border-radius:0 0 80% 0% / 0 0 217px 10px;
            }

            body::after {
                border-radius:0 0 80% 0% / 0 0 217px 10px;
            }

            .container {
                max-width: 355px;
                margin-bottom: 185px;
            }

            .register-box {
                padding: 20px 18px;
            }

            .logo {
                width: 45px;
                height: 45px;
            }

            .logo svg {
                width: 25px;
                height: 25px;
            }

            .step-circle {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }

            .step-label {
                font-size: 9px;
            }
        }
  /* Update these existing styles */
.documents-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.file-upload-box {
    min-height: 140px;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-content {
    text-align: center;
}

.file-preview {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.file-preview.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    /* max-height: 110px; */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.remove-file {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #FF4444;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: background 0.3s;
    z-index: 10;
}

/* Mobile - Keep 2 boxes side by side */
@media (max-width: 768px) {
    .documents-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .file-upload-box {
        min-height: 120px;
        padding: 10px;
    }
    
    .file-upload-icon {
        font-size: 24px !important;
    }
    
    .file-upload-text {
        font-size: 10px !important;
    }
    
    .file-upload-hint {
        font-size: 8px !important;
    }
}