        @import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap');
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            display: flex;
            flex-direction: row;
            height: 100vh;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9f9;
        }
        
        .left {
            position: fixed;
            top: 0;
            left: 0;
            width: 45%;
            height: 100vh;
            background-color: #0D4F23;
            background-image: linear-gradient(135deg, #0D4F23 0%, #156835 100%);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 1000;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .right {
            background-color: white;
            display: flex;
            align-items: center;
            flex-direction: column;
            width: 55%;
            padding: 30px;
            margin-left: 45%;
            border-radius: 0 0 0 60px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
            overflow-y: auto;
        }
        
        .logo {
            background: white;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: rotate(0deg) scale(1.05);
        }
        
        .title1 {
            font-size: 32px;
            margin-bottom: 20px;
            font-family: "Mochiy Pop One", sans-serif;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .title {
            font-size: 34px;
            margin-bottom: 40px;
            margin-top: 20px;
            font-weight: 700;
            color: #0D4F23;
            position: relative;
            padding-bottom: 10px;
        }
        
        .title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #0D4F23;
            border-radius: 2px;
        }
        
        form {
            width: 100%;
            max-width: 500px;
        }
        
        .input-group {
            position: relative;
            width: 100%;
            margin-bottom: 25px;
        }
        
        .input-group label {
            position: absolute;
            top: -10px;
            left: 10px;
            font-size: 12px;
            font-weight: 500;
            color: #0D4F23;
            background-color: white;
            padding: 0 5px;
            letter-spacing: 1px;
        }
        
        .input-group input, .input-group select {
            width: 100%;
            padding: 14px 40px 14px 15px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .input-group input:focus, .input-group select:focus {
            outline: none;
            border-color: #0D4F23;
            box-shadow: 0 0 0 3px rgba(13, 79, 35, 0.1);
        }
        
        .input-group input::placeholder {
            color: #bbb;
        }
        
        .input-group .material-icons {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #0D4F23;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.2s ease;
        }
        
        .input-group .material-icons:hover {
            transform: translateY(-50%) scale(1.1);
        }
        
        .btn {
            width: 100%;
            padding: 14px;
            background-color: #0D4F23;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            font-family: "Mochiy Pop One", sans-serif;
            letter-spacing: 1px;
            box-shadow: 0 4px 8px rgba(13, 79, 35, 0.2);
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background-color: #0A3D1B;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(13, 79, 35, 0.3);
        }
        
        .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(13, 79, 35, 0.2);
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        .register {
            font-size: 14px;
            margin-top: 25px;
            color: #666;
        }
        
        .register a {
            color: #0D4F23;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .register a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #0D4F23;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .register a:hover::after {
            transform: scaleX(1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .left {
                width: 40%;
            }
            .right {
                width: 60%;
                margin-left: 40%;
            }
        }
        
        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }
            
            .left {
                position: relative;
                width: 100%;
                height: auto;
                padding: 40px 20px;
                border-radius: 0 0 30px 30px;
            }
            
            .right {
                width: 100%;
                margin-left: 0;
                padding: 30px 20px;
                border-radius: 0;
            }
            
            .title1 {
                font-size: 24px;
            }
            
            .title {
                font-size: 28px;
                margin: 20px 0 30px;
            }
            
            .logo img {
                width: 200px;
            }
        }
        
        input[type="file"] {
            padding: 10px;
            border-radius: 8px;
            border: 1.5px dashed #ccc;
            width: 100%;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }
        
        input[type="file"]::-webkit-file-upload-button {
            background-color: #0D4F23;
            color: white;
            padding: 8px 12px;
            border: none;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            margin-right: 10px;
            transition: all 0.2s ease;
        }
        
        input[type="file"]::-webkit-file-upload-button:hover {
            background-color: #0A3D1B;
        }
         @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }