    /* Main container for the registration page */
    .nectarine-registration-container {
        max-width: 650px; /* Set a max-width for the form content */
        margin: 0 auto;   /* Center the container on the page */
        padding: 50px 20px 50px 20px; /* 75px top, 20px sides, 50px bottom */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    /* Styles for the form wrapper itself */
    .nectarine-form-wrapper {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 30px 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* Text alignment for header */
    .nectarine-registration-container h1, 
    .nectarine-registration-container .form-intro { 
        text-align: center; 
    }
    .nectarine-registration-container h1 {
        margin-bottom: 10px;
        font-size: 32px;
    }
    .nectarine-registration-container .form-intro {
        color: #718096;
        margin-bottom: 30px;
    }

    /* Form note styles */
    .nectarine-form-wrapper .form-note { background-color: #eef7ff; border-left: 4px solid #3b82f6; padding: 15px; margin: 30px 0; font-size: 14px; border-radius: 4px; }
    .nectarine-form-wrapper .form-note a { color: #2563eb; font-weight: 600; }
    
    /* Input and label styles */
    .nectarine-form-wrapper label { font-weight: 600; display: block; margin-bottom: 5px; color: #2d3748; }
    .nectarine-form-wrapper label .required { color: #e11d48; }
    .nectarine-form-wrapper input[type="text"], 
    .nectarine-form-wrapper input[type="email"], 
    .nectarine-form-wrapper input[type="password"], 
    .nectarine-form-wrapper input[type="tel"] { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #cbd5e0; 
        border-radius: 8px;
        box-sizing: border-box;
    }
    .nectarine-form-wrapper input:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
        outline: none;
    }

    /* Password field specifics */
    .nectarine-form-wrapper .password-wrapper { position: relative; }
    .nectarine-form-wrapper .password-toggle { position: absolute; top: 50%; right: 15px; transform: translateY(-50%); cursor: pointer; color: #888; user-select: none; }

    /* Submit button */
    .nectarine-form-wrapper input[type="submit"] { 
        width: 100%; 
        padding: 15px; 
        background-color: #FB8500; 
        color: white; 
        border: none; 
        border-radius: 8px; 
        font-size: 16px; 
        font-weight: bold; 
        cursor: pointer; 
        margin-top: 20px;
        transition: background-color 0.2s;
    }
    .nectarine-form-wrapper input[type="submit"]:hover {
        background-color: #e67700;
    }

    /* Error message styling */
    .nectarine-form-errors {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .nectarine-form-errors ul {
        margin: 0;
        padding-left: 20px;
    }