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

        body {
            background: linear-gradient(145deg, #eef5e6 0%, #dce8d2 100%);
            font-family: 'Inter', sans-serif;
            color: #1f2e1a;
            line-height: 1.4;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
            position: relative;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 10% 20%, rgba(80, 110, 50, 0.08) 1.2px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
            z-index: 0;
        }

        .signup-container {
            max-width: 1280px;
            width: 100%;
            background: #ffffff;
            border-radius: 48px 32px 56px 32px;
            box-shadow: 0 30px 50px rgba(30, 40, 15, 0.12), 0 8px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            transition: transform 0.2s ease;
            z-index: 2;
            backdrop-filter: blur(0px);
        }

        .agri-hero {
            flex: 1.2;
            background: linear-gradient(125deg, #2f5e2a 0%, #478c3a 100%);
            padding: 2.8rem 2.5rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .agri-hero::after {
            content: "🌾";
            font-size: 220px;
            position: absolute;
            bottom: -40px;
            right: -30px;
            opacity: 0.12;
            pointer-events: none;
            transform: rotate(10deg);
            font-family: monospace;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1.6rem;
            letter-spacing: -0.3px;
            margin-bottom: 2rem;
        }

        .brand-icon {
            font-size: 2.2rem;
            filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
        }

        .hero-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 600;
            line-height: 1.25;
            margin-bottom: 1.2rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .hero-text p {
            font-size: 1rem;
            line-height: 1.5;
            opacity: 0.9;
            max-width: 90%;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .info-row {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,245,0.15);
            backdrop-filter: blur(2px);
            padding: 0.6rem 1.2rem;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .info-item span:first-child {
            font-size: 1.3rem;
        }

        .signup-form {
            flex: 1;
            padding: 2.5rem 2.5rem 2.8rem;
            background: #ffffff;
        }

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

        .form-header h3 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e3a1a;
            letter-spacing: -0.3px;
            font-family: 'Playfair Display', serif;
        }

        .form-header p {
            color: #5a6852;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            border-left: 3px solid #72b043;
            padding-left: 12px;
        }

        .input-group {
            margin-bottom: 1.4rem;
        }

        label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            color: #2d4a23;
            margin-bottom: 0.5rem;
        }

        label i {
            font-style: normal;
            font-size: 1.1rem;
        }

        input, select {
            width: 100%;
            padding: 0.9rem 1rem;
            border-radius: 28px;
            border: 1.5px solid #e2e7db;
            background: #fefef7;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            color: #1f2e1a;
            outline: none;
        }

        input:focus, select:focus {
            border-color: #6aa84f;
            box-shadow: 0 0 0 3px rgba(106, 168, 79, 0.2);
            background: #ffffff;
        }

        .name-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .name-row .input-group {
            flex: 1;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 1.5rem 0 1.8rem;
            flex-wrap: wrap;
        }

        .checkbox-group input {
            width: 20px;
            height: 20px;
            accent-color: #5b8c4e;
            margin: 0;
            border-radius: 4px;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-weight: 500;
            font-size: 0.85rem;
            color: #3e5636;
        }

        .checkbox-group a {
            color: #3f794b;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed #aac78d;
        }

        .checkbox-group a:hover {
            color: #1f552c;
        }

        .btn-signup {
            width: 100%;
            background: #397e32;
            border: none;
            padding: 1rem;
            border-radius: 44px;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 8px rgba(54, 92, 34, 0.2);
        }

        .btn-signup:hover {
            background: #2b6323;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(55, 100, 30, 0.25);
        }

        .login-redirect {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #5a6852;
        }

        .login-redirect a {
            color: #2f6b2c;
            font-weight: 700;
            text-decoration: none;
            margin-left: 6px;
        }

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

        .signup-form {
            position: relative;
        }

        .signup-form::before {
            content: "🌿";
            font-size: 80px;
            position: absolute;
            bottom: 20px;
            right: 20px;
            opacity: 0.1;
            pointer-events: none;
            font-family: monospace;
            transform: rotate(-10deg);
        }

        @media (max-width: 820px) {
            .signup-container {
                border-radius: 36px;
                flex-direction: column;
            }

            .agri-hero {
                padding: 2rem;
                display: none;
            }

            .hero-text h2 {
                font-size: 2rem;
            }

            .signup-form {
                padding: 2rem;
            }

            .info-row {
                margin-top: 1rem;
            }
        }

        @media (max-width: 520px) {
            body {
                padding: 1rem;
            }
            .name-row {
                flex-direction: column;
                gap: 0;
            }
            .hero-text p {
                max-width: 100%;
            }
            .btn-signup {
                padding: 0.8rem;
            }
        }
        select {
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%234f7a3e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.2rem;
        }

        .toast-message {
            visibility: hidden;
            min-width: 240px;
            background-color: #2c5e2a;
            color: #fff;
            text-align: center;
            border-radius: 50px;
            padding: 12px 20px;
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
            z-index: 1000;
            opacity: 0;
            transition: visibility 0s, opacity 0.3s ease;
            backdrop-filter: blur(8px);
            background: #1f4d1cee;
            font-family: 'Inter', sans-serif;
            pointer-events: none;
        }

        .toast-message.show {
            visibility: visible;
            opacity: 1;
            transition: opacity 0.3s;
        }