 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Antonio', sans-serif;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .login-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            max-width: 1200px;
            width: 100%;
            overflow: hidden;
        }
        
        .login-content {
            display: flex;
            min-height: 600px;
        }
        
        .login-form-section {
            flex: 1;
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .login-illustration-section {            
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
            min-height: 80vh;
        }
        
        .logo {
            margin-bottom: 50px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .login-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        
        .login-subtitle {
            font-size: 1rem;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        .form-label {
            color: #2c3e50;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .required {
            color: #e74c3c;
            margin-left: 3px;
        }
        
        .input-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-control {
            border: 1px solid #dfe6e9;
            border-radius: 6px;
            padding: 12px 45px 12px 15px;
            font-size: 0.95rem;
            font-family: 'Antonio', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #ff6b35;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
        }
        
        .form-control::placeholder {
            color: #b2bec3;
            font-weight: 300;
        }
        
        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #b2bec3;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 10;
        }
        
        .forgot-password {
            text-align: right;
            margin-bottom: 25px;
        }
        
        .forgot-password a {
            color: #ff6b35;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
        }
        
        .forgot-password a:hover {
            text-decoration: underline;
        }
        
        .btn-login {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            border: none;
            color: white;
            padding: 14px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Antonio', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 25px;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .signup-text {
            text-align: center;
            color: #636e72;
            font-size: 0.95rem;
            font-weight: 400;
        }
        
        .signup-text a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            margin-left: 5px;
        }
        
        .signup-text a:hover {
            text-decoration: underline;
        }
        
        .illustration-img {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
            object-fit: contain;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .login-content {
                flex-direction: column;
            }
            
            .login-form-section {
                padding: 40px 30px;
            }
            
            .login-illustration-section {
                min-height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .login-title {
                font-size: 1.8rem;
            }
            
            .login-form-section {
                padding: 30px 20px;
            }
        }


